home *** CD-ROM | disk | FTP | other *** search
/ Internet Magazine 2003 October / INTERNET108.ISO / pc / software / windows / building / xmlspy / xmlspyentcomplete5.exe / Data1.cab / _D710D46168024E5FB22E4888AE13F7FC < prev    next >
Encoding:
Extensible Markup Language  |  2002-09-20  |  401 b   |  18 lines

  1. <xsl:stylesheet version="1.0" 
  2.                 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  3.  
  4. <xsl:output method="xml" indent="yes" />
  5.  
  6. <xsl:template match="*">
  7.    <xsl:copy>
  8.       <xsl:copy-of select="@*" />
  9.       <xsl:apply-templates />
  10.    </xsl:copy>
  11. </xsl:template>
  12.  
  13. <xsl:template match="comment()|processing-instruction()">
  14.    <xsl:copy />
  15. </xsl:template>
  16.  
  17. </xsl:stylesheet>
  18.