1
默認情況下,VSCode的格式化程序不會縮進<head>
和<body>
標記。在默認設置以下行存在:VSCode中的自動登錄<head>和<body>
// Indent <head> and <body> sections.
"html.format.indentInnerHtml": false,
我嘗試設置在用戶設置true
html.format.indentInnerHtml
但它並沒有改變任何東西。
這就是我得到:
<html>
<head></head>
<body></body>
</html>
這就是我想要的:
<html>
<head></head>
<body></body>
</html>
確保您保存了對settings.json的更改。 – BoltClock