  |
Regole di default |
  |
Causano l'output del solo testo |
<xsl:template match="*|/">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="text()|@*">
<xsl:value-of select="."/>
</xsl:template>
<xsl:template
match="processing-instruction()|comment()"/>
|