Mega Code Archive

 
Categories / XML / XSLT StyleSheet
 

Copy all the other source tree nodes

File: Data.xml <wine price="10.99" year="1997">product 2</wine> File: Transform.xslt <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"   version="1.0">   <xsl:template match="@*|node()">     <xsl:copy>       <xsl:apply-templates select="@*|node()" />     </xsl:copy>   </xsl:template> </xsl:stylesheet> Output: <?xml version="1.0" encoding="UTF-8"?><wine price="10.99" year="1997">product 2</wine>