C# 中的 HTML 验证/修复
我需要检查 HTML 文档是否正确,所有标签和属性是否正常(在 C# 中)。如果没有,请尝试修复格式错误的标签和/或属性。对我可以使用的库或工具有什么建议吗?
谢谢。
I need to check if a HTML document is correct, if all tags and attributes are ok (in C#). If not, try to fix malformed tags and/or attributes. Any suggestions for a library or tool that i can use?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Tidy Managed 解决了我的问题。该工具知道修复损坏的标签和关闭标签。构建 TidyManaged 应用程序并下载 libtidy.dll 文件并将其放入 bin/debug 文件中。
Tidy Managed solved my problems. This tool knows to repair broken tags and to close tags. Build TidyManaged app and download the libtidy.dll file and place it in bin/debug file.