如何通过 XSLT (在本例中使用 Collective xdv)将文件的 doctype 设置为 HTML5<!DOCTYPE html>
以下是我的 Google foo 能够找到的最好的东西:
<xsl:output
method="html"
doctype-public="XSLT-compat"
omit-xml-declaration="yes"
encoding="UTF-8"
indent="yes" />
生产:
<!DOCTYPE html PUBLIC "XSLT-compat" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">