langs a-z
This commit is contained in:
parent
db842d013d
commit
d066446780
11389 changed files with 98361 additions and 1020 deletions
10
Task/Function-definition/XSLT/function-definition.xslt
Normal file
10
Task/Function-definition/XSLT/function-definition.xslt
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<xsl:template name="product">
|
||||
<xsl:param name="a" select="2"/>
|
||||
<xsl:param name="b" select="3"/>
|
||||
<fo:block>product = <xsl:value-of select="$a * $b"/></fo:block>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:call-template name="product">
|
||||
<xsl:with-param name="a">4</xsl:with-param>
|
||||
<xsl:with-param name="b">5</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
Loading…
Add table
Add a link
Reference in a new issue