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

问题描述:

我想知道是否有工具或生成器可以在生产后从以下位置自动缩进代码:

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

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

收件人:

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

是否存在类似的东西?

尝试js-beautify .

这是一个JavaScript美化器,但也适用于HTML.

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