我将如何通过XSLT 干净地将文件的文档类型设置为HTML5 <!DOCTYPE html>(在这种情况下,使用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">
相关分类