Subject: Stripping white space ? How do I get new line back
From: Arthur Maloney <ArthurM@xxxxxxxxxx>
Date: Mon, 23 Feb 2009 05:21:33 +0000
|
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 Ill get my car
keys.

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[@output='litAP1WhyIJoined']/@content" /></p>
...
Transform works OK It looks like the white space is being stripped.
In html browser looking for:
...and Ill get my car keys.
Line break
Once I have had a report from...
I'm getting
...and Ill get my car keys. Once I have had a report from...
--
Best regards,
Arthur mailto:ArthurM@xxxxxxxxxx
|