vote up 4 vote down star

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

<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>

this one returns a XsltParseError

flag

71% accept rate

5 Answers

vote up 10 vote down check

You can use CDATA section

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

or you can describe &nbsp in local DTD:

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

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

link|flag
vote up 1 vote down

this one returns a XsltParseError

Yes, and the reason for that is that &nbsp; is not a predefined entity in XML or XSLT as it is in HTML.

You could just use the unicode character which &nbsp; stands for: &#160;

link|flag
vote up 1 vote down

one other possibility to use html entities from within xslt is the following one:

<xsl:text disable-output-escaping="yes">&amp;nbsp;</xsl:text>
link|flag
vote up 1 vote down

XSLT only handles the five basic entities by default: lt, gt, apos, quot, and amp. All others need to be defined as @Aku mentions.

link|flag
vote up 1 vote down

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 &#160;, instead of the named entity. Using named entities makes your XML dependent on an inline or external DTD.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.