次の XML があるとします。
<element><![CDATA[<p>Look at this beautiful house: &#8962;</p>]]></element>
この XSL-T:
<xsl:template match='/element'>
<xsl:value-of select="." disable-output-escaping="yes" />
</xsl:template>
それを次のように変換します。
<p>Look at this beautiful house: &#8962;</p>
したがって、CDATA は問題なく削除されますが、適切な表現に変換するにはどうすればよい&#8962;
ですか: ⌂ ?