Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Marklogic 8。在使用xdmp.tidy()清理 HTML 并将其转换为 XHTML 时,它会删除有用的“文章”标签。
有什么修复或选项可以忽略一些标签吗?我们还有其他替代转换技术吗?
已经检查的事情:
http://tidy.sourceforge.net/docs/quickref.html
https://docs.marklogic.com/xdmp/conversion
https://docs.marklogic.com/xdmp.tidy
我们可以使用整洁的选项添加新的 HTMl5 标签。
var options = {"newBlocklevelTags":"article section"}; var cleanHtml=xdmp.tidy(html, options);