diff options
-rw-r--r-- | doc/src/sgml/stylesheet-fo.xsl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/src/sgml/stylesheet-fo.xsl b/doc/src/sgml/stylesheet-fo.xsl index ad26a5abbe8..434e69d8e37 100644 --- a/doc/src/sgml/stylesheet-fo.xsl +++ b/doc/src/sgml/stylesheet-fo.xsl @@ -24,4 +24,11 @@ <xsl:call-template name="inline.monoseq"/> </xsl:template> +<!-- bug fix from <https://sourceforge.net/p/docbook/bugs/1360/#831b> --> + +<xsl:template match="varlistentry/term" mode="xref-to"> + <xsl:param name="verbose" select="1"/> + <xsl:apply-templates mode="no.anchor.mode"/> +</xsl:template> + </xsl:stylesheet> |