myxsl.xsl Example XSLT Stylesheet
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/" priority="1">
<topicList>
<xsl:apply-templates />
</topicList>
</xsl:template>
<xsl:template match="//book" priority="1">
<xsl:apply-templates />
</xsl:template>
<xsl:template match="//chapter" priority="1">
<header>
<xsl:value-of select="./title "/>
</header>
</xsl:template>
</xsl:stylesheet>