using a html entity in xslt (e.g. ) - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T21:02:20Zhttp://stackoverflow.com/feeds/question/31870http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/31870/using-a-html-entity-in-xslt-e-g-nbsp4using a html entity in xslt (e.g. )Pierre Spring2008-08-28T08:55:34Z2009-08-07T10:13:14Z
<p>what is the best way to include a htlm entity in XSLT?</p>
<pre><code><xsl:template match="/a/node">
<xsl:value-of select="."/>
<!--
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>
</code></pre>
<p>this one returns a <strong>XsltParseError</strong></p>
http://stackoverflow.com/questions/31870/using-a-html-entity-in-xslt-e-g-nbsp/31873#3187311Answer by aku for using a html entity in xslt (e.g. )aku2008-08-28T09:02:13Z2008-08-28T09:08:01Z<p>You can use CDATA section</p>
<pre><code><xsl:text disable-output-escaping="yes"><![CDATA[&nbsp;]]></xsl:text>
</code></pre>
<p>or you can describe &nbsp in local DTD:</p>
<pre><code><!DOCTYPE xsl:stylesheet [ <!ENTITY nbsp "&#160;"> ]>
</code></pre>
<p>or just use <code>&#160;</code> instead of <code>&nbsp;</code></p>
http://stackoverflow.com/questions/31870/using-a-html-entity-in-xslt-e-g-nbsp/31878#318781Answer by Tom Lokhorst for using a html entity in xslt (e.g. )Tom Lokhorst2008-08-28T09:04:39Z2008-08-28T09:04:39Z<blockquote>
<p>this one returns a <strong>XsltParseError</strong></p>
</blockquote>
<p>Yes, and the reason for that is that <code>&nbsp;</code> is not a predefined entity in XML or XSLT as it is in HTML.</p>
<p>You could just use the unicode character which <code>&nbsp;</code> stands for: <code>&#160;</code></p>
http://stackoverflow.com/questions/31870/using-a-html-entity-in-xslt-e-g-nbsp/31886#318861Answer by Pierre Spring for using a html entity in xslt (e.g. )Pierre Spring2008-08-28T09:10:04Z2008-08-28T09:10:04Z<p>one other possibility to use html entities from within xslt is the following one:</p>
<pre><code><xsl:text disable-output-escaping="yes">&amp;nbsp;</xsl:text>
</code></pre>
http://stackoverflow.com/questions/31870/using-a-html-entity-in-xslt-e-g-nbsp/31894#318941Answer by samjudson for using a html entity in xslt (e.g. )samjudson2008-08-28T09:13:45Z2008-08-28T09:13:45Z<p>XSLT only handles the five basic entities by default: <code>lt</code>, <code>gt</code>, <code>apos</code>, <code>quot</code>, and <code>amp</code>. All others need to be defined as <a href="http://beta.stackoverflow.com/questions/31870/using-a-html-entity-in-xslt-eg-nbsp#31873" rel="nofollow">@Aku</a> mentions.</p>
http://stackoverflow.com/questions/31870/using-a-html-entity-in-xslt-e-g-nbsp/32161#321611Answer by James Sulak for using a html entity in xslt (e.g. )James Sulak2008-08-28T12:59:00Z2008-08-28T12:59:00Z<p>Now that there's Unicode, it's generally counter-productive to use named character entities. I would recommend using the Unicode character for a non-breaking space instead of an entity, just for that reason. Alternatively, you could use the entity <code>&#160</code>;, instead of the named entity. Using named entities makes your XML dependent on an inline or external DTD. </p>