xsl-list
[Top] [All Lists]

Re: [xsl] Fwd: xml/xslt line break

2008-07-20 04:18:57
I am using version 1.0 thats the problem.I saw a samplw in the web but
didn't work for me:
http://www.dpawson.co.uk/xsl/sect2/break.html#d3080e76
perhaps I donno ow to use call-template the way I should
thanks

On Sun, Jul 20, 2008 at 1:52 PM, Martin Honnen 
<Martin(_dot_)Honnen(_at_)gmx(_dot_)de> wrote:
Taly wrote:

xml/xslt line break
Hi all, I a, getting xml data from another app with '/n' between lines.
The problem is that when this gets converted to HTML all of the line
 breaks in the CDATA section are lost, and it becomes one long line.
Is there a way to format what's inside the CDATA tag to have <br>
 after each line?

One solution is to use the HTML pre element e.g. if you have
 <foo>Line1
 Line 2
 Line 3</foo>
in your XML then you could transform it with
 <xsl:template match="foo">
   <pre>
     <xsl:apply-templates/>
   </pre>
 </xsl:template>

If you don't want to use the HTML pre element but want to transform line
breaks to the HTML br element then that is possible too.
Which version of XSLT do you use, 1.0 or 2.0?



--

       Martin Honnen
       http://JavaScript.FAQTs.com/

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: 
<mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--