我正在使用 HTML Agility Pack 来验证我的 html。下面是我正在使用的,
public class MarkupErrors
{
public string ErrorCode { get; set; }
public string ErrorReason { get; set; }
}
public static List<MarkupErrors> IsMarkupValid(string html)
{
var document = new HtmlAgilityPack.HtmlDocument();
document.OptionFixNestedTags = true;
document.LoadHtml(html);
var parserErrors = new List<MarkupErrors>();
foreach(var error in document.ParseErrors)
{
parserErrors.Add(new MarkupErrors
{
ErrorCode = error.Code.ToString(),
ErrorReason = error.Reason
});
}
return parserErrors;
}
所以说我的输入类似于下图所示:
<h1>Test</h1>
Hello World</h2>
<h3>Missing close h3 tag
所以我当前的函数返回以下错误列表
- Start tag <h2> was not found
- End tag </h3> was not found
这很好......
我的问题是我希望整个 html 都是有效的,即带有适当的<head>
标签<body>
,因为这个 html 稍后将可用于预览,下载为 .html 文件。
所以我想知道是否可以使用 HTML Agility Pack 进行检查?
任何想法或其他选择将不胜感激。谢谢