Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 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 | |||||
6 | <xsl:template match="glossentry/glossterm"> | ||||
7 | <xsl:apply-imports/> | ||||
8 | <xsl:if test="$generate.permalink != 0"> | ||||
9 | <xsl:call-template name="permalink"> | ||||
10 | <xsl:with-param name="node" select=".."/> | ||||
11 | </xsl:call-template> | ||||
12 | </xsl:if> | ||||
13 | </xsl:template> | ||||
14 | </xsl:stylesheet> |