Exemple de règle


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

Source : <Title>Introduction</Title>

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