]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
docs: page.xsl: Improve generation of paragraph anchor links
authorPeter Krempa <pkrempa@redhat.com>
Mon, 26 Oct 2020 12:44:19 +0000 (13:44 +0100)
committerPeter Krempa <pkrempa@redhat.com>
Mon, 2 Nov 2020 13:14:07 +0000 (14:14 +0100)
Use the 'parent' axis to check whether the parent is a div with
class='section' rather than looking for 'toc-backref' anchor to see
whether to generate one of the headerlink alternatives. Both hare
docutils-specific thus apply to docs generated from RST documents.

This adds the links for pages generated from RST documents which don't
have a table of contents (and thus lack the 'toc-backref' anchors) and
thus fixes pages such as hacking.html and news.html to have reasonable
links which can be shared.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
docs/page.xsl

index 36168305fa079a08c86c574e0aacde7fcad2ec7e..07bfc52a4cedca80e0dc56d6a4a70746c66b3df1 100644 (file)
       <xsl:if test="./html:a/@id">
         <a class="headerlink" href="#{html:a/@id}" title="Permalink to this headline">&#xb6;</a>
       </xsl:if>
-      <xsl:if test="./html:a[@class='toc-backref']">
+      <xsl:if test="parent::html:div[@class='section']">
         <a class="headerlink" href="#{../@id}" title="Permalink to this headline">&#xb6;</a>
       </xsl:if>
     </xsl:element>