From: Lennart Poettering Date: Mon, 16 Jul 2012 17:26:08 +0000 (+0200) Subject: man: actually generate h2 headers for letters in index as we meant to X-Git-Tag: v187~62 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=a6c9b1c492378a093fe7db69c42a19b8f8193814;ds=sidebyside man: actually generate h2 headers for letters in index as we meant to --- diff --git a/TODO b/TODO index ae9fbc230..0a923ce30 100644 --- a/TODO +++ b/TODO @@ -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: diff --git a/make-man-index.py b/make-man-index.py index 44d15f8c2..29e357875 100755 --- a/make-man-index.py +++ b/make-man-index.py @@ -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')