show/hide this revision's text 3 nbsp are evaluated in code, but amp not. this is a work around

what is the best way to include a htlm entity in XSLT?

<xsl:template match="/a/node">
    <xsl:value-of select="."/>
    <xsl:text>&nbsp;</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

show/hide this revision's text 2 trying to display an nbsp

using a html entity in xslt (e.g.  )&nbsp;)

show/hide this revision's text 1

using a html entity in xslt (e.g.  )

what is the best way to include a htlm entity in XSLT?

<xsl:template match="/a/node">
    <xsl:value-of select="."/>
    <xsl:text>&nbsp;</xsl:text>
</xsl:template>

this one returns a XsltParseError