using a html entity in xslt (e.g. &nbsp;) - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T21:02:20Z http://stackoverflow.com/feeds/question/31870 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/31870/using-a-html-entity-in-xslt-e-g-nbsp 4 using a html entity in xslt (e.g. &nbsp;) Pierre Spring 2008-08-28T08:55:34Z 2009-08-07T10:13:14Z <p>what is the best way to include a htlm entity in XSLT?</p> <pre><code>&lt;xsl:template match="/a/node"&gt; &lt;xsl:value-of select="."/&gt; &lt;!-- due to a strange behaviour in stackoverflow, the &amp;_nbsp_; gets evaluated, buth the amp not. hencce the space in the following code. --&gt; &lt;xsl:text&gt;&amp;_nbsp_;&lt;/xsl:text&gt; &lt;/xsl:template&gt; </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#31873 11 Answer by aku for using a html entity in xslt (e.g. &nbsp;) aku 2008-08-28T09:02:13Z 2008-08-28T09:08:01Z <p>You can use CDATA section</p> <pre><code>&lt;xsl:text disable-output-escaping="yes"&gt;&lt;![CDATA[&amp;nbsp;]]&gt;&lt;/xsl:text&gt; </code></pre> <p>or you can describe &amp;nbsp in local DTD:</p> <pre><code>&lt;!DOCTYPE xsl:stylesheet [ &lt;!ENTITY nbsp "&amp;#160;"&gt; ]&gt; </code></pre> <p>or just use <code>&amp;#160;</code> instead of <code>&amp;nbsp;</code></p> http://stackoverflow.com/questions/31870/using-a-html-entity-in-xslt-e-g-nbsp/31878#31878 1 Answer by Tom Lokhorst for using a html entity in xslt (e.g. &nbsp;) Tom Lokhorst 2008-08-28T09:04:39Z 2008-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>&amp;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>&amp;nbsp;</code> stands for: <code>&amp;#160;</code></p> http://stackoverflow.com/questions/31870/using-a-html-entity-in-xslt-e-g-nbsp/31886#31886 1 Answer by Pierre Spring for using a html entity in xslt (e.g. &nbsp;) Pierre Spring 2008-08-28T09:10:04Z 2008-08-28T09:10:04Z <p>one other possibility to use html entities from within xslt is the following one:</p> <pre><code>&lt;xsl:text disable-output-escaping="yes"&gt;&amp;amp;nbsp;&lt;/xsl:text&gt; </code></pre> http://stackoverflow.com/questions/31870/using-a-html-entity-in-xslt-e-g-nbsp/31894#31894 1 Answer by samjudson for using a html entity in xslt (e.g. &nbsp;) samjudson 2008-08-28T09:13:45Z 2008-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#32161 1 Answer by James Sulak for using a html entity in xslt (e.g. &nbsp;) James Sulak 2008-08-28T12:59:00Z 2008-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>&amp;#160</code>;, instead of the named entity. Using named entities makes your XML dependent on an inline or external DTD. </p>