Re: [xsl] urgent - carriage return, line feed, xml data - urgent

Subject: Re: [xsl] urgent - carriage return, line feed, xml data - urgent
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 16 Jul 2002 20:54:07 +0100
> I want to show the data as it is recieved from the data source.
that is XSLT's default behaviour.

> I tried <xsl:preserve-space elements="*"/> and <xsl:preserve-space 
> elements="cell"/>. this did not work,

That only affects white space nodes and the text child of your <cell>
has non white space characters so these will have no effect.

>  is there an escape character for CRLF 
> or carriage return like I have put for the ampersand above.

CR LF and CRLF pairs are all normalised to a single #10 character by XML
parsers, if you use value-of in XSLT then these #10 line endings will be
preserved. 

Perhaps you are looking at HTML in an HTML browser. The browser will of
course render new lines as a single space character as is normal in HTML
if you want spaces preserved you'll neeneed to set the relevant CSS
properties or, simpler, place the result inside
<pre>...</pre>

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