I tried:
<xsl:if test=“$character = ‘&’”>
…
</xsl:if>
This is not right. Can anyone show me the right way to do it?
Hi
use
<xsl:if test=“$character = ‘&’”>
instead
Cheers
Uli
<xsl:if test=“$character = ‘&’”>
this forum automatically unescapes characters!!