<?xml version="1.0"?>
<xsl:stylesheet   version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!-- 
     This stylesheet processes an XML glossary and outputs terms in alphabetical order.

     Glossary XSLT, DTD, and example by Ken Sall, SiloSmashers (ksall@silosmashers.com).   
-->
<xsl:output method="xml" indent="yes" />

<xsl:template match="/Glossary">
  <xsl:apply-templates select="Term" />
</xsl:template>

<xsl:template match="Term">
  <xsl:copy-of select="." />
</xsl:template>

</xsl:stylesheet>
