xsl-list
[Top] [All Lists]

[xsl] Stripping white space ? How do I get new line back

2009-02-23 00:22:31
Hello Xsl-list,

Using Xml v1.0 1 Xsl V1.0
How do I get line break (new line) back?

My Source Xml  (From a database)
<table>
        <row   ... output="litAP1WhyIJoined" content="... and I’ll get my car 
keys.&#xD;&#xA;&#xD;&#xA;Once I have had a report from..."/>  
        ...
</table>


Xsl Transform
<xsl:stylesheet version="1.0"
        xmlns="http://www.w3.org/1999/xhtml";
        xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>

 <xsl:output method="html" encoding="utf-8"
  doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";
  doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" indent="yes" 
standalone="yes" />

...
<p><xsl:value-of select="./row[(_at_)output='litAP1WhyIJoined']/@content" /></p>

...
Transform works OK It looks like the white space is being stripped.

In html browser looking for:

...and I’ll get my car keys.
Line break
Once I have had a report from...


I'm getting
...and I’ll get my car keys. Once I have had a report from...

-- 
Best regards,
 Arthur                          mailto:ArthurM(_at_)seipas(_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>
--~--

<Prev in Thread] Current Thread [Next in Thread>