次のテンプレートがあります。
<xsl:template match="questionExplanation">
<span class="questionExplanation">
<xsl:value-of select="node()" />
</span>
の値node()
は「Enter a number <= 5」です。 to をエスケープする必要があります<
(<
および他のすべての htmls 特殊文字.
どうやってやるの?xslt 2.0を使用しています
ありがとう!