What is the escape character for semi-coloon(;) in xslt
I can't seem figure out the escape character for semi-colon(;) in XSLT. I'm trying to put this line in my head tag
<META http-equiv="Content-Type" content="text/html; charset=UTF-16">
but the se开发者_运维问答mi-colon (;
) after the HTML is causing me problems.
I think you need to use xsl:output
instead:
<xsl:output method="html" encoding="UTF-16" indent="yes" />
精彩评论