<?xml version="1.0"?>
<xsl:stylesheet
  version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:h="http://www.w3.org/1999/xhtml"
  xmlns="http://www.w3.org/1999/xhtml"
  xmlns:s="http://www.w3.org/1999/XMLSchema"
>
  <xsl:output method="xml" indent="yes" />

  <xsl:template match="s:schema">
    <html>
      <head>
        <title>@@ any place to get a title?</title>
      </head>

      <body>
        <xsl:apply-templates/>
      </body>
    </html>
  </xsl:template>

  <xsl:template match="s:documentation">
	<xsl:copy-of select="."/>
  </xsl:template>


<!-- don't pass text thru -->
  <xsl:template match="text()|@*">
  </xsl:template>
</xsl:stylesheet>

