DOCTYPE declaration getting lost when using XSL

2020-02-13 10:58发布

The input to my XSL is an XHTML. After applying the XSL the DOCTYPE declaration that was present in the input XHTML gets lost in the output. Do i have an option to copy/retain the DOCTYPE declaration in the output using XSL. The XSL processor that i am using is SAXON.

标签: xslt
1条回答
迷人小祖宗
2楼-- · 2020-02-13 11:32

Add an output directive:

<xsl:output 
  doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
  doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
/>

By the way, output directives stack - you can have as many of them as you want.

查看更多
登录 后发表回答