XSLT - Exemple


<xsl:template match="Titre">
   <h1>
      <xsl:apply-templates/>
   </h1>
</xsl:template>

Source : <Titre>Introduction</Titre>

Résultat : <h1>Introduction</h1>