what is the best way to include a htlm entity in XSLT?
<xsl:template match="/a/node">
<xsl:value-of select="."/>
<xsl:text> </xsl:text>
<!--
due to a strange behaviour in stackoverflow, the
&_nbsp_; gets evaluated, buth the amp not.
hencce the space in the following code.
-->
<xsl:text>&_nbsp_;</xsl:text>
</xsl:template>
this one returns a XsltParseError
