This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Embedded Javascript (xsl:script issue)


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.:

  &lt;XACT>
  &lt;XT><xsl:value-of select="XT" />
  &lt;XID><xsl:value-of select="XID" />
  &lt;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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]