1 | <xsl:apply-templates select="pattern"/> |
2 | Applies template rules to the children of the node |
3 | <xsl:value-of select="pattern"> |
4 | Extracts value of element pattern |
5 | <xsl:for-each select="pattern"> |
6 | Performs operation for each element described by pattern |
7 | <xsl:sort select="key"> |
8 | Used in apply-template or for-each element, sorts children according to the key |
9 | |
10 | |
11 |