Ia 使用 XSLT 1.0,我确实有一个 XML,而看起来像这样
<item name="note"><value><p>Add the &lt;bean&gt; tag pased below to the &lt;beans&gt; element in this file .... </value></item>
我想在 HTML 中这样显示
Add the <bean> tag passed below to the <beans> element in this file.
请注意,当我使用 disable-output-escaping=yes 时,<p> 将被转换为段落标签。
这就是我的 xslt
<xsl:template match="item[@name='note']">
<xsl:value-of select="value" disable-output-escaping="yes" />
</xsl:template>
使用此 xslt,它会忽略 bean 和 beans xml,并且不会显示在页面中。如何确保以我想要的方式显示它?