blob: 31cb26801aaa3cd633d70f104a845b41f030a0e3 [file] [log] [blame]
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<!-- FileName: copy32 -->
<!-- Document: http://www.w3.org/TR/xslt -->
<!-- DocVersion: 19991116 -->
<!-- Section: 7.5 -->
<!-- Creator: David Marston -->
<!-- Purpose: Make each comment be the current node, and copy it. -->
<xsl:template match="/">
<out>
<xsl:for-each select="//comment()">
<xsl:copy/><xsl:text>
</xsl:text>
</xsl:for-each>
</out>
</xsl:template>
</xsl:stylesheet>