xsl-list
[Top] [All Lists]

RE: resolving entities

2004-07-23 07:41:47

<xsl:output method="html" indent="yes" omit-xml-declaration="yes" />

The output method must be 'html' to let the '&amp;' appear as 
'&' in the output.

No, ampersands in HTML must be escaped just as in XML.

The difference is that HTML parsers will forgive you if you don't escape
them, whereas XML parsers won't. But it's still correct to escape them,
which is why XSLT processors do it automatically for you.

Michael Kay



<Prev in Thread] Current Thread [Next in Thread>