show/hide this revision's text 2 added 5 characters in body

You can use CDATA section

<xsl:text disable-output-escaping="yes"><![CDATA[&nbsp;]]></xsl:text>

or you can describe &nbsp in local DTD:

<?xml version="1.0" encoding="UTF-8" ?>

<!DOCTYPE local xsl:stylesheet [ <!ENTITY nbsp "&#160;"> ]>

or just use &#160; instead of &nbsp&nbsp;

show/hide this revision's text 1

You can use CDATA section

<xsl:text disable-output-escaping="yes"><![CDATA[&nbsp;]]></xsl:text>

or you can describe &nbsp in local DTD:

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE local [
<!ENTITY nbsp  "&#160;">
]>

or use &#160; instead of &nbsp