暂无描述

passthrough.xsl 375B

1234567891011
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  3. xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
  4. <xsl:template match='@*|node()'>
  5. <xsl:copy>
  6. <xsl:apply-templates select='@*|node()'/>
  7. </xsl:copy>
  8. </xsl:template>
  9. </xsl:stylesheet>