ff5ec35a28108fc095da7c63d5cec5b1934c04c1
[utils] / crawler / kiss / src / identity.xsl
1 <?xml version="1.0" encoding="UTF-8"?>
2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
3  
4   <!-- =====================================================
5     By default, simply copy everything 
6     ===================================================== -->
7   <xsl:template match="@*|node()">
8     <xsl:copy>
9       <xsl:apply-templates select="@*|node()"/>
10     </xsl:copy>
11   </xsl:template>
12   
13   <xsl:template match="body">
14     Hello!!!
15   </xsl:template>
16   
17 </xsl:stylesheet>