我正在使用Microsoft 反 xss 库,我注意到由于某种原因它正在删除<ul>
标签。我不知道为什么。例如:
string html = @"<ul><li>this is a test </li></ul>";
string sanitized = Sanitizer.GetSafeHtmlFragment(html);
这是返回:
\r\n<li>this is a test </li>
有任何想法吗?
我正在使用Microsoft 反 xss 库,我注意到由于某种原因它正在删除<ul>
标签。我不知道为什么。例如:
string html = @"<ul><li>this is a test </li></ul>";
string sanitized = Sanitizer.GetSafeHtmlFragment(html);
这是返回:
\r\n<li>this is a test </li>
有任何想法吗?