RE: [xsl] XSLT Recursive Templates

Subject: RE: [xsl] XSLT Recursive Templates
From: "Jim Fuller" <jim.fuller@xxxxxxxxxxxxxxxxxx>
Date: Fri, 27 Jun 2003 11:27:34 +0100
huh ?

do a simple xsl:copy on it will return exactly that, but what you want is something different, u want the browser to interpret carraige returns or white spaces into something meaningful, u need to use html tags for this !

Space &#32; (hexadecimal &#x20;) 
Carriage return &#13; (&#xD;) 
Tab &#9; (&#x9;) 
Line feed (newline) &#10; (&#xA;) 

u could find and return on the above whitespace elements and replace with the equivelent html tag for this type of thing.....

gl, jim fuller
 

> -----Original Message-----
> From: Stevenson Ngila [mailto:Stevenson@xxxxxxxxxxxxxxxxxxxxxx]
> Sent: 27 June 2003 11:12
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject: RE: [xsl] XSLT Recursive Templates
> 
> 
> ====//====
> 
> > XSLT does not recorgnise carriage returns, 
> 
> what ?
> 
> check out this rather old article
> http://www.xml.com/pub/a/2001/12/05/whitespace.html
> 
> gl, jim fuller
> ====//====
> 
> <><><><><><><<><><><><><><<><><><><><><<><><><><><><<><><><><
> Hi,
> Good point but what if i have the following xml extract:
> 
> <description>
> 	This e-mail and any files transmitted with it are 
> 	confidential and intended solely for the use of the
> 	individual or entity to whom they are addressed. 
> 
> 	This also confirms that this message has been swept for viruses.
> </description>
> 
> How can i format it using XSLT so as it appears exactly as it is?
> <><><><><><><<><><><><><><<><><><><><><<><><><><><><<><><><>
> 
> 
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
> 
> 
This e-mail and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you are not the intended recipient please contact the sender immediately. Any disclosure, copying, distribution or any other use of this communication is strictly prohibitedand may be unlawful. Stuart Lawrence Marketing Communications Limited reserves the right to monitor and intercept communications for unlawful business purposes.

This also confirms that this message has been swept for viruses, although Stuart Lawrence Marketing Communications Limited accepts no responsibility for any loss or damage resulting directly or indirectly from the use of this email or contents.

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread