xsl:call-template

Syntax

<xsl:call-template name="qualified-name">
    <xsl:with-param name="qualified-name" select="expression">
...
    </xsl:with-param>
</xsl:call-template>

Description

Call a named template. The <xsl:with-param> elements within the <xsl:call-template> instruction are used to define parameters that are passed to the template.

name—Specifies the name of the called template.

See Example: Requiring and Restricting Configuration Statements, Example: Imposing a Minimum MTU Setting, and Example: Automatically Configuring Logical Interfaces and IP Addresses.

Related Topics