This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: OK, stupid Q time


> 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]