From: Radek Czajka Date: Tue, 3 Apr 2012 10:06:36 +0000 (+0200) Subject: html: no editor note in toc X-Git-Tag: 1.7~160 X-Git-Url: https://git.mdrn.pl/librarian.git/commitdiff_plain/c9a6042e37f3bb1fdd74a29ba2764ffe76944220?hp=cdc273354769f4add5f2a6e01d5526a6130a517d html: no editor note in toc --- diff --git a/librarian/html.py b/librarian/html.py index e04790f..c1a5e5b 100644 --- a/librarian/html.py +++ b/librarian/html.py @@ -234,7 +234,7 @@ def add_table_of_contents(root): counter = 1 for element in root.iterdescendants(): if element.tag in ('h2', 'h3'): - if any_ancestor(element, lambda e: e.get('id') in ('footnotes',) or e.get('class') in ('person-list',)): + if any_ancestor(element, lambda e: e.get('id') in ('footnotes', 'nota_red') or e.get('class') in ('person-list',)): continue element_text = raw_printable_text(element)