[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

RE: [xsl] transforming to breaks


Subject: RE: [xsl] transforming to breaks
From: "Koes, Derrick" <Derrick.Koes@xxxxxxxxxxxxxxxx>
Date: Tue, 25 Mar 2003 11:31:40 -0500

Thanks Jarno!


-----Original Message-----
From: Jarno.Elovirta@xxxxxxxxx [mailto:Jarno.Elovirta@xxxxxxxxx] 
Sent: Tuesday, March 25, 2003 10:34 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: RE: [xsl] transforming to breaks

> I have a node like <nodeName>blah blah&#13;&#10;more blah 
> blah</nodeName>.
> I wish to transform this to html, using <BR></BR> for the carriage
> return/linefeed combo.
> 
> How can I do this?

Recursive template, e.g.

template "changer"
  param "text"
  choose
    when contains($text, "&#xA;")
      value-of substring-before($text, "&#xA;")
      <BR></BR>
      call-template "changer>
        with-param "text" substring-after($text, "&#xA;")
    otherwise
      value-of $text

The XML parser changes &#13;&#10; sequences into single &#10;, so you just
need to change LINE FEED characters.

Cheers,

Jarno - Linnunradan käsikirja liftareille: Osa 14

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
This electronic transmission is strictly confidential to Smith & Nephew and
intended solely for the addressee.  It may contain information which is
covered by legal, professional or other privilege.  If you are not the
intended addressee, or someone authorized by the intended addressee to
receive transmissions on behalf of the addressee, you must not retain,
disclose in any form, copy or take any action in reliance on this
transmission.  If you have received this transmission in error, please
notify the sender as soon as possible and destroy this message.

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



Current Thread
Keywords
xml