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.
1 parent ad232fb commit 7dad7d7Copy full SHA for 7dad7d7
python/template.rst
@@ -10,10 +10,16 @@
10
<div>
11
<table>
12
{% for section in config %}
13
- <tr>
14
- <td colspan=5 style="height:4em; vertical-align:center">
15
- <h3><a name="#{{ section.name }}">{{ section.name }}</a></h3></td>
16
- </tr>
+ <tr>
+ <td colspan=5 style="height:4em; vertical-align:center">
+ {% with section_id = section.name | lower | replace(" ", "-") %}
+ <h3 id="{{ section_id }}">
17
+ {{ section.name }}
18
+ <a class="headerlink" href="#{{ section_id }}" title="Permalink to this headline">¶</a>
19
+ </h3>
20
+ {% endwith %}
21
+ </td>
22
+ </tr>
23
24
{% for package in section.packages %}
25
<tr>
0 commit comments