You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
735 B

  1. <?xml version="1.0"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  3. <xsl:template match="/">
  4. <xsl:apply-templates/>
  5. </xsl:template>
  6. <xsl:template match="group">
  7. <s1 title="{@title}">
  8. <xsl:apply-templates/>
  9. </s1>
  10. </xsl:template>
  11. <xsl:template match="entry">
  12. <s2 title="{@title}">
  13. <p>
  14. Read the <link idref="{@id}"><xsl:value-of select="@title"/></link>
  15. document or jump directly to:
  16. </p>
  17. <ul>
  18. <xsl:apply-templates/>
  19. </ul>
  20. </s2>
  21. </xsl:template>
  22. <xsl:template match="voice">
  23. <li><link idref="{ancestor::*/@id}" anchor="faq-{position()}"><xsl:apply-templates/></link></li>
  24. </xsl:template>
  25. </xsl:stylesheet>