xsl-list
[Top] [All Lists]

Re: [xsl] <xsl:strip-space> does NOT work when comment lines are involved (directly before).

2009-12-08 04:45:36


then the resulting output.xml would be:

<ns1:myelem>
<ns2:aaa>123</ns2:aaa>
<!-- some comment --><ns2:ccc>456</ns2:ccc>
</ns1:myelem>

you have indent="yes" which means the output that you get is
processor-specicic (xslt does not constrain the indentation rules very
much) and is really a hint to the processor taht white space doesn't
matter and it can change it as it sees fit to maaaaake things look nice
(to it, not to you)

It seems that isn't the case and you do care about white space so remove
indent="yes" have strip-space then just add white space where you want
it by adding <xsl:text>&#10;</xsl:text> at suitable places in your
templates.

David

________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. 
________________________________________________________________________

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