2.6 ⚙️VsCode Auto-format

Sehen Sie sich “Section 3 Topic 26” an.

Was ich in diesem Video lernen kann:

Auto-Format:

Auto-Format hilft Ihnen, den Code zu organisieren.
(Strg „Ctrl“ + F ) um den Code zum Formatieren.

Not formatted Code:

<!DOCTYPE html>

<html>

<head>
<title>lorem</title>
</head>

<body>
<main>

<h1>lorem</h1>
<hr>
<h2>lorem</h2>
<p>
lorem
</p>
</main>
</body>

</html>
HTML

formatted Code:

<!DOCTYPE html>

<html>

<head>
    <title>lorem</title>
</head>

<body>
    <main>

        <h1>lorem</h1>
        <hr>
        <h2>lorem</h2>
        <p>
            lorem
        </p>
    </main>
</body>

</html>
HTML