M
Markus Wiedenmaier
Hi,
I have an xml like this simplified sample:
<root>
<a u=0105/>
</root>
I want to transform this xml to html and want to put out the glyph of
unicode character 0105(hex).
I tried this:
<xsl:template match="a">
<xsl:text>&#x</xsl:text>
<xsl:value-of select="@u"/>
<xsl:text>;</xsl:text>
</xsl:template>
This occurs an error! Is it possible to do this?
Has someone an idea?
Thanks for your help
Bye
Markus
I have an xml like this simplified sample:
<root>
<a u=0105/>
</root>
I want to transform this xml to html and want to put out the glyph of
unicode character 0105(hex).
I tried this:
<xsl:template match="a">
<xsl:text>&#x</xsl:text>
<xsl:value-of select="@u"/>
<xsl:text>;</xsl:text>
</xsl:template>
This occurs an error! Is it possible to do this?
Has someone an idea?
Thanks for your help
Bye
Markus