
The <xsl:template> element defines an output producing template. This element must have either the match attribute or the name attribute set.
<xsl:template match=PATTERN name=NAME mode=NAME priority=NUMBER> <xsl:param> [optional] TEMPLATE </xsl:template>Specifies a pattern that determines the elements for which this template should be used. It is a required attribute if there is no name attribute.
Specifies a name for this template, by which it can be invoked through the <xsl:call-template> element.
Specifies a particular mode for this template, which can be matched by an attribute of the <xsl:apply-templates> element. This is useful for processing the same information in multiple ways.
|
Comments?
devdoc-feedback@netscape.com |