aboutsummaryrefslogtreecommitdiffstats
path: root/docs/xml-docs/skins/xml.apache.org/stylesheets/copyover.xsl
blob: 5ef559c572c8c311817a512f712a2ca443a6bbda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0"?>

<xsl:stylesheet
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    version="1.0">

  <xsl:template match="@*|*|text()|processing-instruction()">
    <xsl:copy>
      <xsl:apply-templates select="@*|*|text()|processing-instruction()"/>
    </xsl:copy>
  </xsl:template>

</xsl:stylesheet>