Default-Templates

<xsl:template match="*|/">
  <xsl:apply-templates/>
</xsl:template>

<xsl:template match="@*|text()">
  <xsl:value-of select="."/>
</xsl:template>

<xsl:template
     match="comment()|processing-instruction()"/>