X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/65a1f637391920c91a42cfd36695e55b84a1eb95..3f84dfec54e97d5d5b4f8a1d37c2a1e8ba8a2933:/lib/librarian/html.py diff --git a/lib/librarian/html.py b/lib/librarian/html.py index 8d256ee95..b279e5dd5 100644 --- a/lib/librarian/html.py +++ b/lib/librarian/html.py @@ -53,7 +53,7 @@ def transform(input_filename, output_filename): doc = etree.parse(doc_file, parser) result = doc.xslt(style) - if result.find('//h1') is not None: + if result.find('//p') is not None: add_anchors(result.getroot()) add_table_of_contents(result.getroot()) result.write(output_filename, xml_declaration=False, pretty_print=True, encoding='utf-8') @@ -212,7 +212,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',)): + if any_ancestor(element, lambda e: e.get('id') in ('footnotes',) or e.get('class') in ('person-list',)): continue if element.tag == 'h3' and len(sections) and sections[-1][1] == 'h2':