Subject: entity references in xsl:message content
From: Kevin Rodgers <kevin.rodgers@xxxxxxx>
Date: Wed, 2 Mar 2005 17:21:12 -0700
|
Why does:
<xsl:message terminate="no"><element attribute="value"></xsl:message>
output:
<element attribute="value">
instead of (what I intend):
<element attribute="value">
or even (consistent interpretation of entity references)
<element attribute="value">
That is, shouldn't xsl:message serialize it as either text (my
preference) or xml (also reasonable)? Should I specify
disable-output-escaping="yes" somewhere within xsl:message?
In case it matters, I'm running Saxon 8.3 with these declarations:
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text"/>
Thanks,
--
Kevin
|