RE: The XSL-List Digest V3 #329

Subject: RE: The XSL-List Digest V3 #329
From: Ronald <ronald@xxxxxxxxxxx>
Date: Tue, 07 Nov 2000 13:44:33 +0100

> Can I open a <td> tag in one template and close it in another?

maye it's an option for you to use something like:


<xsl:template match="/">
<xsl:apply-templates select="first"/>
<xsl:apply-templates select="second"/>
</xsl:template>

<xsl:template match="first">
<xsl:text disable-output-escaping="yes">&lt;TD&gt;</xsl:text>
<xsl:apply-templates/>
</xsl:template>

<xsl:template match="second">
<xsl:apply-templates/>
<xsl:text disable-output-escaping="yes">&lt;/TD&gt;</xsl:text>
</xsl:template>

RH


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



Current Thread