January 01, 2002
XSL The Extensible Style Language (Web Techniques, Jan 1999)
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template pattern="doc">
<HTML>
<HEAD>
<TITLE>A Document</TITLE>
<HEAD>
<BODY>
<xsl:process-children/>
</BODY>
</HTML>
</xsl:template>
<xsl:template pattern="title">
<H1>
<xsl:process-children/>
</H1>
</xsl:template>
<!-- this stylesheet handles only a
subset of the sample document -->
</xsl:stylesheet>
Previous Page |
1
|
2
|
3
|
4
|
5
|
6
|
7
Next Page