Subject: Re: Embedded Javascript (xsl:script issue)
From: Jeni Tennison <mail@xxxxxxxxxxxxxxxx>
Date: Tue, 27 Feb 2001 17:20:44 +0000
|
Hi Zeynep,
> But I need to generate a line with a <XID> tag and a value and no
> </XID> tag at all (I am not producing XML), hence the
> disable-output-escaping='yes'.
If you're not producing XML, then you should set your output to text:
<xsl:output method="text" />
and generate your output as a plain string, e.g.:
<XACT>
<XT><xsl:value-of select="XT" />
<XID><xsl:value-of select="XID" />
<KEY>
...
That way you don't need to use disable-output-escaping because the
output you're producing (plain text) is never escaped anyway.
I hope that helps,
Jeni
---
Jeni Tennison
http://www.jenitennison.com/
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|