Final stylesheet:
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="slideshow">
<HTML>
<TITLE><xsl:process select="title"/></TITLE>
<H1><xsl:process select="title"/></H1>
<xsl:process select="slides"/>
</HTML>
</xsl:template>
<xsl:template match="slide">
<HR/>
<H2><xsl:process select="title"/></H2>
<UL>
<xsl:process select="point"/>
</UL>
</xsl:template>
<xsl:template match="point">
<LI><xsl:process-children/></LI>
</xsl:template>
</xsl:stylesheet>
[back]
[toc]
[next]