Fix HTML TOC themes issue.
authorRadek Czajka <radekczajka@nowoczesnapolska.org.pl>
Mon, 3 Feb 2014 13:19:20 +0000 (14:19 +0100)
committerRadek Czajka <radekczajka@nowoczesnapolska.org.pl>
Mon, 3 Feb 2014 13:19:20 +0000 (14:19 +0100)
librarian/html.py

index 8703150..8822f96 100644 (file)
@@ -222,7 +222,7 @@ def add_anchors(root):
 def raw_printable_text(element):
     working = copy.deepcopy(element)
     for e in working.findall('a'):
-        if e.get('class') == 'annotation':
+        if e.get('class') in ('annotation', 'theme-begin'):
             e.text = ''
     return etree.tostring(working, method='text', encoding=unicode).strip()