gloss-permalinks.xsl 464 B

1234567891011121314
  1. <xsl:stylesheet version="1.0"
  2. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  3. xmlns:d="http://docbook.org/ns/docbook"
  4. xmlns="http://www.w3.org/1999/xhtml">
  5. <xsl:template match="glossentry/glossterm">
  6. <xsl:apply-imports/>
  7. <xsl:if test="$generate.permalink != 0">
  8. <xsl:call-template name="permalink">
  9. <xsl:with-param name="node" select=".."/>
  10. </xsl:call-template>
  11. </xsl:if>
  12. </xsl:template>
  13. </xsl:stylesheet>