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: Converting linebreaks



On Wed, May 02 '01 at 14:48, Joel P Thornton wrote:
> I have this xml:
> 
> ================
> <text>This is line 1.
> This is <B>line 2</B>.
> This is line 3.</text>
> ================
> 
> 
> Does XSLT provide a way that I can transform it into this?:
> 
> ================
> <text>
>   This is line 1.
>   <BR/>
>   This is <B>line 2</B>.
>   <BR/>
>   This is line 3.
> </text>
> ================
> 
It depends ;-)

The XML-processor (used by your XSL-T) processor is allowed to do wide
space stripping. It it does you're lost. Otherwise you could use a
recursive template to match for sub-string-befor 0xA, rest. Output
substring
<BR/>
process rest recursively.

Cu,
    Goetz.

PGP signature


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