Spaces in themes list in HTML.
authorRadek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>
Fri, 28 Jun 2013 09:20:05 +0000 (11:20 +0200)
committerRadek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>
Fri, 28 Jun 2013 09:20:05 +0000 (11:20 +0200)
librarian/html.py

index f29a9b9..70fc6e5 100644 (file)
@@ -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)