且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

HTML文件中的自动缩进代码(生成器/工具)?

更新时间:2022-12-18 22:46:54

试试js-beautify

这是一个JS美化工具,但也适用于HTML。

I was wondering if there is any tool or generator that could auto indent my code after production from:

<div>
<div>
<p>
</p>
</div>
</div>

to:

<div>
     <div>
          <p>
          </p>
     </div>
</div>

Does something like this exist?

Try js-beautify.

It's a JS beautifier but works for HTML too.