|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: transforming to breaks
> I have a node like <nodeName>blah blah 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, "
")
value-of substring-before($text, "
")
<BR></BR>
call-template "changer>
with-param "text" substring-after($text, "
")
otherwise
value-of $text
The XML parser changes sequences into single , 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
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








