XSLT
Is a set of
templates
They transform
XML source tree
into
XML result tree
"For nodes that satisfy this pattern, do this". A simple template:
<xsl:template match="/">
<html>
...
</html>
</xsl:template>
Meaning:
process the root element
generate an HTML document for the root
A template body will usually contain XSLT instructions
Ivan Herman, W3C Head of Offices
16 July, 2002
8 (32)