How can I display
in Mozilla using XSL. I've tried CDATA but that didn't work.
I am using Firefox 3.5.5
How can I display
in Mozilla using XSL. I've tried CDATA but that didn't work.
I am using Firefox 3.5.5
As you can't place an HTML character entity directly into your XSLT source (except for <
, >
, '
, "
and &
) you will need to go with numerical entities. So you should to use:
 
If you must output a real
, the common solution in XSLT is
<xsl:value-of select="'&nbsp;'" disable-output-escaping="yes" />