home *** CD-ROM | disk | FTP | other *** search
/ Quick PC 61 / Quick PC 61.iso / I386 / RAWXML.XS_ / rawxml.xsl
Encoding:
Extensible Markup Language  |  2003-02-21  |  623 b   |  14 lines

  1. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  2. <!-- Copyright (c) Microsoft Corporation.  All rights reserved. -->
  3.  
  4.    <!-- Match the root node -->
  5.    <xsl:output method="xml" indent="yes" encoding="utf-16" omit-xml-declaration="yes"/>
  6.   <xsl:template match="/">
  7.       <xsl:apply-templates select="*|@*|node()|comment()|processing-instruction()"/>
  8.    </xsl:template>
  9.  
  10.   <xsl:template match="*|@*|node()|comment()|processing-instruction()">
  11.     <xsl:copy><xsl:apply-templates select="*|@*|node()|comment()|processing-instruction()"/></xsl:copy>
  12.   </xsl:template>
  13. </xsl:stylesheet>
  14.