Understanding A Template
Most templates have the following form:
<xsl:template match="emphasis">
<i><xsl:apply-templates/></i>
</xsl:template>
-
The whole <xsl:template> element is
a template
-
The match pattern determines where this
template applies
-
Literal result element(s) come from non-XSL
namespace(s)
-
XSLT elements come from the XSL namespace