We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bf72327 + 7dad7d7 commit 4795fb7Copy full SHA for 4795fb7
python/template.rst
@@ -3,10 +3,16 @@
3
<div>
4
<table>
5
{% for section in config %}
6
- <tr>
7
- <td colspan=5 style="height:4em; vertical-align:center">
8
- <h3><a name="#{{ section.name }}">{{ section.name }}</a></h3></td>
9
- </tr>
+ <tr>
+ <td colspan=5 style="height:4em; vertical-align:center">
+ {% with section_id = section.name | lower | replace(" ", "-") %}
+ <h3 id="{{ section_id }}">
10
+ {{ section.name }}
11
+ <a class="headerlink" href="#{{ section_id }}" title="Permalink to this headline">¶</a>
12
+ </h3>
13
+ {% endwith %}
14
+ </td>
15
+ </tr>
16
17
{% for package in section.packages %}
18
<tr>
0 commit comments