如何使生成的 HTML 文件在 WebStorm 10 中自动缩进
How to make the generated HTML file auto-indent in WebStorm 10
我将 WebStorm 10 与 Jade 一起使用。生成的 HTML 不是自动缩进的,例如:
index.jade:
extends layout
block content
h1= title
p Welcome to #{title}
index.html
<!DOCTYPE html><html><head><title></title><link rel="stylesheet" href="/stylesheets/style.css"></head><body><h1></h1><p>Welcome to </p></body></html>
有没有办法自动缩进生成的HTML?
Ctrl + Alt + L 在 Windows 和 Linux
Option + Command + L on Mac OS X
已更新
如果您在 参数中设置 $FileName$ --pretty
: 输出的格式应该很好。
我将 WebStorm 10 与 Jade 一起使用。生成的 HTML 不是自动缩进的,例如:
index.jade:
extends layout
block content
h1= title
p Welcome to #{title}
index.html
<!DOCTYPE html><html><head><title></title><link rel="stylesheet" href="/stylesheets/style.css"></head><body><h1></h1><p>Welcome to </p></body></html>
有没有办法自动缩进生成的HTML?
Ctrl + Alt + L 在 Windows 和 Linux
Option + Command + L on Mac OS X
已更新
如果您在 参数中设置 $FileName$ --pretty
: 输出的格式应该很好。