home *** CD-ROM | disk | FTP | other *** search
/ Freelog 116 / FreelogNo116-JuilletSeptembre2013.iso / Musique / amarok / amarok-x86-setup-2.7.0-1.exe / share / apps / khelpcenter / table-of-contents.xslt < prev   
Extensible Markup Language  |  2013-04-28  |  621b  |  27 lines

  1. <?xml version="1.0"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  3.                 version="1.0">
  4.  
  5. <xsl:template match="book">
  6. <table-of-contents>
  7. <xsl:apply-templates select="chapter"/>
  8. </table-of-contents>
  9. </xsl:template>
  10.  
  11. <xsl:template match="chapter">
  12. <chapter>
  13. <title><xsl:value-of select="title"/></title>
  14. <anchor><xsl:value-of select="@id"/></anchor>
  15. <xsl:apply-templates select="sect1"/>
  16. </chapter>
  17. </xsl:template>
  18.  
  19. <xsl:template match="sect1">
  20. <section>
  21. <title><xsl:value-of select="title"/></title>
  22. <anchor><xsl:value-of select="@id"/></anchor>
  23. </section>
  24. </xsl:template>
  25.  
  26. </xsl:stylesheet>
  27.