diff options
Diffstat (limited to 'man')
-rw-r--r-- | man/custom-html.xsl | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/man/custom-html.xsl b/man/custom-html.xsl index 2e40ab1660..dde9d7af0e 100644 --- a/man/custom-html.xsl +++ b/man/custom-html.xsl @@ -48,7 +48,6 @@ <xsl:text>Permalink to this headline</xsl:text> </xsl:attribute> <xsl:attribute name="href"> - <!-- <xsl:call-template name="href.target.uri" /> --> <xsl:text>#</xsl:text> <xsl:call-template name="inline.charseq"/> </xsl:attribute> @@ -57,6 +56,28 @@ </h2> </xsl:template> +<xsl:template match="refsect2/title|refsect2/info/title"> + <h3> + <xsl:attribute name="id"> + <xsl:call-template name="inline.charseq"/> + </xsl:attribute> + <xsl:apply-templates/> + <a> + <xsl:attribute name="class"> + <xsl:text>headerlink</xsl:text> + </xsl:attribute> + <xsl:attribute name="title"> + <xsl:text>Permalink to this headline</xsl:text> + </xsl:attribute> + <xsl:attribute name="href"> + <xsl:text>#</xsl:text> + <xsl:call-template name="inline.charseq"/> + </xsl:attribute> + <xsl:text>ΒΆ</xsl:text> + </a> + </h3> +</xsl:template> + <xsl:template match="varlistentry"> <dt> <xsl:attribute name="id"> |