mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Fix #2984: Invalid HTML has been generated if html_split_index
enabled
This commit is contained in:
parent
4c3c128e9b
commit
562eb51e5b
1
CHANGES
1
CHANGES
@ -23,6 +23,7 @@ Bugs fixed
|
||||
* #3004: Invalid link types "top" and "up" are used
|
||||
* #3009: Bad rendering of parsed-literals in LaTeX since Sphinx 1.4.4
|
||||
* #3000: ``option`` directive generates invalid HTML anchors
|
||||
* #2984: Invalid HTML has been generated if `html_split_index` enabled
|
||||
|
||||
Documentation
|
||||
-------------
|
||||
|
@ -36,7 +36,7 @@
|
||||
{%- for column in entries|slice(2) if column %}
|
||||
<td style="width: 33%; vertical-align: top;"><ul>
|
||||
{%- for entryname, (links, subitems, _) in column %}
|
||||
<li>{{ indexentries(entryname, links) }}</li>
|
||||
<li>{{ indexentries(entryname, links) }}
|
||||
{%- if subitems %}
|
||||
<ul>
|
||||
{%- for subentryname, subentrylinks in subitems %}
|
||||
|
Loading…
Reference in New Issue
Block a user