Bonjour à tous,

Est-ce qu'il y a une solution pour restructurer du code HTML (Indentation du code) ?

Exemple :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<html>
<head>
<title>Une page HTML vierge</title>
<meta charset="utf-8" />
</head>
<body>
 
</body>
</html>

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<html>
    <head>
        <title>Une page HTML vierge</title>
        <meta charset="utf-8" />
    </head>
    <body>
 
    </body>
</html>
Merci