XSLT template to just copy all elements without any condition from one file to another.
<xsl:template match="* | @*">
<xsl:copy>
<xsl:copy-of select="@*" />
<xsl:apply-templates />
</xsl:copy>
</xsl:template>
0 comments: