我正在使用JTidy(HTML Tidy库的java端口)清理一些现有的站点。当我使用JTidy时,我的配置似乎非常严格,最终会切掉页面的底部(糟糕的标记)。
当我只通过w3cHTML验证器工具运行相同的标记时,它会清理它,但在重写方面更智能;它似乎可以智能地猜测丢失的标签在哪里,并相应地更新结构,而不是切断标签。
有人知道w3c使用的HTML Tidy配置吗?
我的jtidy配置如下:
Tidy tidy = new Tidy();
tidy.setTidyMark(false);
tidy.setXHTML(true);
tidy.setXmlOut(false);
tidy.setNumEntities(true);
tidy.setSpaces(2);
tidy.setWraplen(2000);
tidy.setUpperCaseTags(false);
tidy.setUpperCaseAttrs(false);
tidy.setQuiet(false);
tidy.setMakeClean(true);
tidy.setShowWarnings(true);
tidy.setBreakBeforeBR(true);
tidy.setHideComments(true);
W3C验证器使用的整洁配置可在此处获得