<!-- $Id: comment-extract.xsl,v 1.1 2000/08/13 02:47:26 connolly Exp $ -->
<xsl:transform 
    xmlns:xsl  ="http://www.w3.org/1999/XSL/Transform" version="1.0"
    xmlns:util ="http://www.w3.org/XML/2000/04schema-hacking/comment#"
    >

<xsl:template match="*[@util:comment]">
  <xsl:value-of select="@util:comment"/>
</xsl:template>

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

</xsl:transform>
