需要工具来格式化html(缩进,添加空格)
我正在开发一个生成 html 的 .net 项目。
生成 html 字符串时,没有空格或缩进。这使得理解生成的 html 变得困难。
有没有一个工具可以获取我生成的 html 字符串并对其进行格式化,使其看起来不错?
I am working on a .net project that generates html.
When the html string is generated, the is no whitespace or indenting. This makes understanding the generated html difficult.
Is there a tool that will take my string of generated html and format it so that it looks nice?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
如果您自己生成 HTML,它应该是有效的 XML。
因此,您可以使用
XDocument
类对其进行格式化。您可以在
XDocument
内构建 HTML,然后调用ToString()
,它会自动为您格式化 HTML。此外,XDocument 应该比手动字符串连接更容易使用,并且本质上可以保护您免受大多数(但不是全部)XSS 攻击。
If you're generating the HTML yourself, it should be valid XML.
Therefore, you can use the
XDocument
class to format it.You can build the HTML inside an
XDocument
, then callToString()
, which will automatically format the HTML for you.In addition, XDocument should be much easier to use than manual string concatenation, and will intrinsically protect you from most (but not all) XSS attacks.
这是 Tidy 在线版本
Here's an online version of Tidy
使用 https://github.com/AngleSharp/AngleSharp
using https://github.com/AngleSharp/AngleSharp
您可能有兴趣查看 Tidy,http://tidy.sourceforge.net/
You might be interested in taking a look at Tidy, http://tidy.sourceforge.net/
您可以使用 HTMLTextWriter 并调用 HTMLTextWriter.Indent 来设置行的缩进。
You could use HTMLTextWriter and call HTMLTextWriter.Indent to set the indention of the lines.