From http://www.w3schools.com (Copyright Refsnes Data)
The <xsl:call-template> element calls a named template.
<xsl:call-template name="templatename"> <!-- Content:xsl:with-param* --> </xsl:call-template> |
Attribute | Value | Description |
---|---|---|
name | templatename | Required. Specifies the name of the template to be called |
Call a template named "description" when the processor finds a car element:
<xsl:template match="car"> <xsl:call-template name="description"/> </xsl:template> |
From http://www.w3schools.com (Copyright Refsnes Data)