X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/3333b0748fd76170f3b44bf9533b21889fa6685f..cc27a215809ae78a17bfca92228beeaf07939eee:/lib/librarian/html.py diff --git a/lib/librarian/html.py b/lib/librarian/html.py index f5ad1389d..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')