Just started with XLS and I have this code, which I think suppose to copy every node to the output file. But I am really not sure...
<!-- Copies everything? But it doesn't?? -->
<!-- Matches any element node -->
<xsl:template match="*">
<xsl:copy>
<!-- Matches any attribute node -->
<xsl:for-each select="@*">
<xsl:copy/>
</xsl:for-each>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>