我的 XSLT 输出了以下 XML
电流输出
<stem>
<text>
<p style="white-space: pre-wrap">
<span style="font-size:11;">How much would it cost to buy an Apple & Pear if it's a Saturday?</span>
</p>
</text>
</stem>
期望的输出
<stem>
<text>
<p style="white-space: pre-wrap">
<span style="font-size:11;">How much would it cost to buy an Apple & Pear if it's a Saturday?</span>
</p>
</text>
</stem>
我试过 disable-output-escaping="no" 但没有效果:
我在用着
<xsl:value-of select="." disable-output-escaping="no"/>
谢谢