Re: [xsl] output content after <br>

Subject: Re: [xsl] output content after <br>
From: Lawrence Mielniczuk <lwm@xxxxxxxxxxxxxxx>
Date: Tue, 28 May 2002 14:29:18 +0100 (GMT Daylight Time)
The following produces the output you are after:

<xsl:template match="content">
    <xsl:value-of select="node()"/>
    <xsl:apply-templates/>
</xsl:template>

<xsl:template match="break">
    <br/>
    <xsl:value-of select="node()"/> <!-- I think its at this point that I
need say output the remaining content -->
</xsl:template>

---LwM---
-------------------------------------
Lawrence Mielniczuk
Systems and Electronic Resources Service
Room 314
Bodleian Library
Oxford OX1 3BG
Tel: (01865) 277 114
Mobile: 0781 647 9176
-------------------------------------


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


Current Thread