xsl-list
[Top] [All Lists]

Re: [xsl] saxon xmlspy discrepancy in whitespace handling

2007-01-17 06:01:38
Abel,

one minor correction,

  <xsl:variable name="newline"><xsl:text>&#10;</xsl:text></xsl:variable>

This can also be written as follows, but that is a matter of taste:
<xsl:variable name="newline">&#10;</xsl:variable>
or
<xsl:variable name="newline" select=" '&#10;' " />

2nd one, not the 1st (which is equivalent to <xsl:variable
name="newline"/>

David

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--