Re: [xsl] How can I get XSLT to write <cfreturn this>

Subject: Re: [xsl] How can I get XSLT to write <cfreturn this>
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 18 Aug 2003 23:01:30 +0100

  I'm trying to develop a transformation that will
  output, among other things, this text (literal)...
  
  <cfreturn this>

XSLT is mainly designed to produce XML and that is not XML.
You coul duse 
<xsl:output method="text"/>
to outpiut in text mode then you could use
  &lt;cfreturn this&gt;
in the stylesheet which will produce the required string.

David


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread