Stylesheet template example I

  • Numbering paragraphs:
    <xsl:template match="//p">
      <p>
        <xsl:number/>. 
        <xsl:apply-templates/>
      </p>
    </xsl:template>
 
© Copyright 2005 Michael Kröll