man: actually generate h2 headers for letters in index as we meant to

This commit is contained in:
Lennart Poettering 2012-07-16 19:26:08 +02:00
parent e616d1c674
commit a6c9b1c492
2 changed files with 1 additions and 3 deletions

2
TODO
View File

@ -64,8 +64,6 @@ Features:
* journald: we currently rotate only after MaxUse+MaxFilesize has been reached.
* reexec journald across initrd transition
* nspawn: bind mount /var/log/journal from the host
* Document:

View File

@ -36,7 +36,7 @@ for n in sorted(index.keys(), key = str.lower):
if letter is None or n[0].upper() != letter:
letter = n[0].upper()
h2 = SubElement(body, 'h1')
h2 = SubElement(body, 'h2')
h2.text = letter
ul = SubElement(body, 'ul')