xsl-list
[Top] [All Lists]

Re: Extra newline remove on text nodes

2005-04-12 06:27:20


yes, that removes ALL newlines.  I would like to preserve the original 
newlines while not adding the extra two. 

normalize-space() converts a run of newlines to a space.
Even if you kept a newline in the attribute value it would be reported
as a space by an XML parser when the result tree is used, so it may be
that using normalize-space is all you need.

Note also that
   <xsl:attribute name='name'>
    <xsl:value-of disable-output-escaping="yes"

d-o-e is specified to have no effect on attribute values.

Otherwise it would probably be simpler to look to the definition of your
extension function
urldecoder:decode()
rather than try to correct teh output of that function with xslt1's
somewhat limited string handling.

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

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