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
|
1
|
what is the best way to include a htlm entity in XSLT?
this one returns a XsltParseError
|
|||
|
|
|
|
You can use CDATA section
or you can describe   in local DTD:
or just use |
|||
|
|
|
|
XSLT only handles the five basic entities by default: |
||
|
|
|
|
Yes, and the reason for that is that You could just use the unicode character which |
||
|
|
|
|
one other possibility to use html entities from within xslt is the following one:
|
||
|
|
|
|
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 |
||
|
|