Subject: RE: templates with priority, xsl code reuse
From: "Michael Kay" <mhkay@xxxxxxxxxxxx>
Date: Fri, 13 Jul 2001 09:02:11 +0100
|
> first, I have a template with priority 1:
>
> <xsl:template match="root" priority="1">
> ...xsl code
> </xsl:template>
>
> I want to define another template with priority 2, that use
> the same code of
> the first template( priority 1)with adding some new code:
Give the first template a name as well as a match attribute, and call it
using call-template.
Alternatively, put the two template rules in different modules, one of which
imports the other, and use xsl:apply-imports.
Mike Kay
Software AG
>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|