From: Radek Czajka Date: Fri, 28 Jun 2013 09:20:05 +0000 (+0200) Subject: Spaces in themes list in HTML. X-Git-Tag: 1.7~138 X-Git-Url: https://git.mdrn.pl/librarian.git/commitdiff_plain/3299c0d71150212730c3b7f9a1a54622c3213dc9?ds=sidebyside;hp=--cc Spaces in themes list in HTML. --- 3299c0d71150212730c3b7f9a1a54622c3213dc9 diff --git a/librarian/html.py b/librarian/html.py index f29a9b9..70fc6e5 100644 --- a/librarian/html.py +++ b/librarian/html.py @@ -288,6 +288,7 @@ def add_table_of_themes(root): for i, fragment in enumerate(fragments): item = etree.SubElement(themes_li, 'a', href="#%s" % fragment) item.text = str(i + 1) + item.tail = ' ' root.insert(0, themes_div)