vim / vi / linux:正确缩进 html 文件
如何使用 linux 或 vi 或 vim 轻松缩进 html 文件。
how can I easily indent html files with linux or vi or vim.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用 linux 或 vi 或 vim 轻松缩进 html 文件。
how can I easily indent html files with linux or vi or vim.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
如果您的 vim 知道它是 html 文件 (
:se filetype=html
),则可以使用默认缩进方法 (gg=G
)。我想看看:help =
,它非常强大If your vim knows it's an html file (
:se filetype=html
), you can use the default indentation method (gg=G
). I would have a look at:help =
, it's quite powerful使用 HTML 整洁的插件。
这是针对 vim 的一些帮助
Use an HTML tidy plugin.
Here is some help for vim
您可以使用html tidy程序来缩进您的html文件。它也可能会纠正一些事情,改变的不仅仅是缩进,所以它可能会比你要求的更多,但除非这是一个问题,否则你最终会因为运行 tidy 而得到更好的 html 文件。
You can use the html tidy program to have your html file(s) indented. It could also potentially correct things and change more than just indentation, so it might do more than you ask for, but unless that is a problem you will end up with better html files as a result of running tidy.