Re: [xsl] preserve-space and strip-space?

Subject: Re: [xsl] preserve-space and strip-space?
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 17 Sep 2001 14:09:35 +0100
strip-space strips white space text nodes. ie text nodes that only have
white space.
<links>
 <link>     testing pre-stripping</link>

the first child of <links> is a text node consisting of
a newline and a space.
If you had specifed strip-space for links then this would be removed and
so the first child would be the link element.

the link element only has one child, a text node.
As it contains non white space characters it is not removed.
If you want to remove the space from front and back, use the
normalize-space function.

<link  > 
the white space inside a start tag is never even reported by the XML
parser so never has any effect.

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