Tom,
Thats right - the <xsl:text disable-output-escaping='yes'></text>
My understanding is that the whole purpose of the CDATA section is that it
DOESN'T do character escaping.
This is how the specification has been implemented in other parsers - like
XT which I mentioned earlier.
This means that something like a large section of javascript, with heaps of
non-standard charactors, can be just stuck in a CDATA section and used as
is, without the whole thing coming to grief in the browser.
Tim
-----Original Message-----
From: Tom Kaiser [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, 17 April 2001 9:04 PM
To: Sablotron Mailing List
Subject: Re: [Sab] RE: [Sab] Re: [Sab] whitespace
> A work around is to wrap the CDATA sections in
> <xsl:text>
> </xsl:text>
> tags. (although it didn't seem to work when I was using it - but it is
> the
> official work around)
It's not, you probably mean <xsl:text disable-output-escaping='yes'>.
Tom