xsl-list
[Top] [All Lists]

Re: attribute management

2002-11-21 09:43:03

      </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



<Prev in Thread] Current Thread [Next in Thread>