Re: [xsl] attribute management

Subject: Re: [xsl] attribute management
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 21 Nov 2002 16:43:03 GMT
      </xsl:choose>/

don't do that

do this

      </xsl:choose><xsl:text>/</xsl:text>

or even


      </xsl:choose>/<xsl:text/>

or

      </xsl:choose>
      <xsl:text>/</xsl:text>

If you keep all literal characters inside text nodes taht just contain
those characters then you can have arbitrary white space between xsl
instruction elements used to indent teh stylesheet.
but if you go

      </xsl:choose>/

      <xsl:choose>

then that text node consists of a / and two newlines, and the whole text
node will get copied to the result.

David



_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

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


Current Thread