RE: [xsl] OK, stupid Q time

Subject: RE: [xsl] OK, stupid Q time
From: "Michael Kay" <michael.h.kay@xxxxxxxxxxxx>
Date: Thu, 15 Nov 2001 17:32:28 -0000
> Okay... everyone seems to agree that it is <BR/>.
> My question then is.. how do you get that BR to be displayed when
> translating the XML with a XSL?
> For example:
> My XML has this
>       <paragraph>This is my first <BR/> page</paragraph>
> And my XSL has this
> 	<font color="red"><xsl:value-of select="paragraph"/></font>

Use <xsl:copy-of> instead of <xsl:value-of>. The latter extracts the string
value, which is the concatenation of the text content of the element.

Better still, use <xsl:apply-templates/> to process all elements
recursively.

Mike Kay


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


Current Thread