Hello all,
I have a document that looks like:
<result>
<filed name="xpto" value="<elem>Hello<elem>"/>
</result>
and I want to transform to :
<result>
<filed name="xpto">Hello</elem>
</result>
I tried:
<xsl:template match="*">
<xsl:element name="{name()}">
<xsl:apply-templates select="node()|@*"/>
</xsl:element>
</xsl:template>
<xsl:template match="filed">
<xsl:element name="filed">
<xsl:value-of select ="@value"/>
</xsl:element>
</xsl:template>
but entities are not resolved. Any idea?
Thanks, Rui
--
Rui Alberto L. Gonçalves <rui-l-goncalves(_at_)ptinovacao(_dot_)pt>
PT Inovação
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list