[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: document.write & copy-of


Subject: Re: document.write & copy-of
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 26 Oct 2000 22:56:19 GMT

> But what is the purpose of empty <xsl:text /> instructions?

It's the same as putting the characters inside a non empty xsl:text,
but saves a few keystrokes. Note the end result is the same,
the white space used to indent the stylesheet is in nodes that only have
white space so is stripped.


     <xsl:value-of select="name()" />
     <xsl:text />="<xsl:value-of

is effectively same as

     <xsl:value-of select="name()" />
     <xsl:text>="<xsl:text><xsl:value-of

but both of those are not the same as

     <xsl:value-of select="name()" />
     ="<xsl:value-of

which puts a newline and some spaces before the = in the output tree. 

David (answering for Jeni, for no particular reason)


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



Current Thread