﻿<?xml version="1.0"?>
<!-- $Id: pass-thru.xsl,v 1.2 2004/01/22 19:27:27 jmates Exp $ -->
<!-- works tolerably well, though xsltproc likes to prefix up elements with xlink:* attributes if given access to the DTD for an XML document... -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  <xsl:template match="node()|@*|comment()">
    <xsl:copy>
      <xsl:apply-templates select="node()|@*|comment()"/>
    </xsl:copy>
  </xsl:template>
</xsl:stylesheet>
