This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: preserve-space and strip-space?



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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]