我知道有很多HTML格式化程序。我已经尝试了很多,但没有一个符合我的要求。请建议您是否遇到了以下内容:
1)转换
<div><%=request.getAttribute("NAV")%><div>
BB<span>CC<input type="text" value="123"></span></div></div>
向
<div><%=request.getAttribute("NAV")%>
<div>BB
<span>CC
<input type="text" value="123">
</span>
</div>
</div>
2)保留所有符号
(/>'/ wont be converted to />')
(space wont be converted to  )
(  wont be converted to space)
3)不要做
<input type="text" value="123">
向
<input type="text"
value="123">
这些工具只需要为每个新<xxx
添加新行,并为每个<xxx
&amp;添加缩进。 /xxx>
巢。
答案 0 :(得分:0)
HTML格式化程序习惯于剥离php / ruby代码和模板标记,因此请确保在验证之前,您的HTML是100%HTML。
我知道
的HTML格式化程序在替换现有HTML之前,请查看HTML代码中的异常情况。