[Home] [By Thread] [By Date] [Recent Entries]
Hello,
I would change your code at another point:
<xsl:value-of select="node()"/> - as you had it - selects the value of the first node(), in your case only the first text node. If you change it to <xsl:copy-of select="node()"/> or <xsl:copy-of select="text()"/> all nodes or all text will be copied. After the text your <br/> will be appended. So the above should work easier and better. There is a built-in template, which outputs every text-node similar to: <xsl:template match="text()"> <xsl:value-of select="."/> </xsl:template> Regards, Joerg -- System Development VIRBUS AG Fon +49(0)341-979-7419 Fax +49(0)341-979-7409 joerg.heinicke@xxxxxxxxx www.virbus.de XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|

Cart



