本文介绍了HTML文件中的自动缩进代码(生成器/工具)?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
< div>< p> ;
< div>
< p>
< / p>
< / div>
< / div>
到:
< DIV>
< div>
< p>
< / p>
< / div>
< / div>
是否存在类似的情况?
解决方案
。
这是一个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?
解决方案
It's a JS beautifier but works for HTML too.
这篇关于HTML文件中的自动缩进代码(生成器/工具)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!