需要工具来格式化html(缩进,添加空格)

发布于 2024-08-19 22:45:53 字数 131 浏览 5 评论 0原文

我正在开发一个生成 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

耶耶耶 2024-08-26 22:45:53

如果您自己生成 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 call ToString(), 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.

生活了然无味 2024-08-26 22:45:53

使用 https://github.com/AngleSharp/AngleSharp

var parser = new HtmlParser();
var document = parser.Parse(html);

using (var writer = new StringWriter())
{
    document.ToHtml(writer, new PrettyMarkupFormatter());
    return writer.ToString();
}

using https://github.com/AngleSharp/AngleSharp

var parser = new HtmlParser();
var document = parser.Parse(html);

using (var writer = new StringWriter())
{
    document.ToHtml(writer, new PrettyMarkupFormatter());
    return writer.ToString();
}
横笛休吹塞上声 2024-08-26 22:45:53

您可能有兴趣查看 Tidy,http://tidy.sourceforge.net/

You might be interested in taking a look at Tidy, http://tidy.sourceforge.net/

随遇而安 2024-08-26 22:45:53

您可以使用 HTMLTextWriter 并调用 HTMLTextWriter.Indent 来设置行的缩进。

You could use HTMLTextWriter and call HTMLTextWriter.Indent to set the indention of the lines.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文