]> granicus.if.org Git - docbook-dsssl/commitdiff
Add template for refpurpose in no.anchor.mode to generate
authorBob Stayton <bobs@sagehill.net>
Thu, 30 Apr 2015 17:35:04 +0000 (17:35 +0000)
committerBob Stayton <bobs@sagehill.net>
Thu, 30 Apr 2015 17:35:04 +0000 (17:35 +0000)
the dash separator in TOC line for the refentry when
the refpurpose contains a link or indexterm.

xsl/html/refentry.xsl

index 2c7ede9357860bd894658f6d2f7e786746b42670..5efcd61648b6c2202fb1bd176937755677e04020 100644 (file)
   </xsl:if>
 </xsl:template>
 
+<!-- This handles repurpose in TOC line to turn off any nested links -->
+<xsl:template match="refpurpose" mode="no.anchor.mode">
+  <xsl:if test="node()">
+    <xsl:text> </xsl:text>
+    <xsl:call-template name="dingbat">
+      <xsl:with-param name="dingbat">em-dash</xsl:with-param>
+    </xsl:call-template>
+    <xsl:text> </xsl:text>
+    <xsl:apply-templates mode="no.anchor.mode"/>
+  </xsl:if>
+</xsl:template>
+
 <xsl:template match="refdescriptor">
   <xsl:apply-templates/>
 </xsl:template>