What is the best way to include an html entity in XSLT?
<xsl:template match="/a/node">
<xsl:value-of select="."/>
<xsl:text> </xsl:text>
</xsl:template>
this one returns a XsltParseError
|
What is the best way to include an html entity in XSLT?
this one returns a XsltParseError |
||||
|
|
|
You can use CDATA section
or you can describe   in local DTD:
or just use |
||||
|
|
|
one other possibility to use html entities from within xslt is the following one:
|
|||||
|
|
It is also possible to extend the approach from 2nd part of aku's answer and get all known character references available, like this:
There is certain difference in the result as compared to It may be wise then to use a local entity resolver to keep the XSLT engine from fetching character entity definitions from the Internet. JAXP or explicit Xalan-J users may need a patch for Xalan-J to use the resolver correctly. See my blog XSLT, entities, Java, Xalan... for patch download and comments. |
||||
|
|
|
XSLT only handles the five basic entities by default: |
|||
|
|
|
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 |
|||
|
|
Yes, and the reason for that is that You could just use the unicode character which |
|||
|
|
|
Thank you for your information. I have written a short blog post based on what worked for me as I was doing XSLT transformation in a template of the Dynamicweb CMS. The blog post is here: How to add entities to XSLT templates. /Sten Hougaard |
|||
|
|
|
I found all of these solutions produced a  character in the blank space. Using |
|||
|
|
|
It is necessary to use the entity #x160; |
|||
|
|
|
I had no luck with the DOCTYPE approach from Aku. What worked for me in MSXML transforms on an Windows 2003 server, was
Sort of a hybrid of the above. Thanks Stackoverflow contributors! |
|||
|
|