what is the best way to include a htlm 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 a htlm entity in XSLT?
this one returns a XsltParseError
| ||||
|
feedback
|
|
You can use CDATA section
or you can describe   in local DTD:
or just use | ||||
|
feedback
|
|
one other possibility to use html entities from within xslt is the following one:
| |||
feedback
|
Yes, and the reason for that is that You could just use the unicode character which | |||
|
feedback
|
|
XSLT only handles the five basic entities by default: | |||
|
feedback
|
|
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 | |||
|
feedback
|
|
It is also possible to extend the XSLT stylesheet/transform DTD to get all known character references available, like this:
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. | ||||
|
feedback
|
|
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 | |||
|
feedback
|
|
I found all of these solutions produced a  character in the blank space. Using | |||
|
feedback
|