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 と Bean xml が無視され、ページに表示されません。希望どおりに表示するにはどうすればよいですか?