X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/d5036b0a2531a84a0381053b1927aa1a23984ed0..933a58adfc8abf2d4c9843afb7fda4cb4d06d030:/lib/librarian/html.py diff --git a/lib/librarian/html.py b/lib/librarian/html.py index 9763428d0..94514df3c 100644 --- a/lib/librarian/html.py +++ b/lib/librarian/html.py @@ -53,9 +53,13 @@ def transform(input_filename, output_filename): doc = etree.parse(doc_file, parser) result = doc.xslt(style) - add_anchors(result.getroot()) - add_table_of_contents(result.getroot()) - result.write(output_filename, xml_declaration=False, pretty_print=True, encoding='utf-8') + if result.find('//h1') 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') + return True + else: + return False class Fragment(object):