我怎么插入
在XSLT样式表中,我不断收到此错误:
XML解析错误:未定义的实体
基本上我想在XSLT模板中使用非破坏空格字符.
在XSLT中包含html实体的最佳方法是什么?
<xsl:template match="/a/node">
<xsl:value-of select="."/>
<xsl:text> </xsl:text>
</xsl:template>
Run Code Online (Sandbox Code Playgroud)
这个返回一个XsltParseError
xslt ×2