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]

RE: The XSL-List Digest V3 #329



> > 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

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