我如何通过 XSLT将文件的 doctype干净地<!DOCTYPE html>
设置为 HTML5 (在本例中为collective.xdv)
以下是我的 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">