From e6d00c7abc4ba679bd1434db61a5d5cb0a27e2da Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20St=C4=99pniowski?= Date: Thu, 9 Oct 2008 16:13:44 +0200 Subject: [PATCH] Changed check if HTML file should be generated to search for //div. --- lib/librarian/html.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/librarian/html.py b/lib/librarian/html.py index f5ad1389d..6a4ad5e27 100644 --- a/lib/librarian/html.py +++ b/lib/librarian/html.py @@ -53,7 +53,8 @@ def transform(input_filename, output_filename): doc = etree.parse(doc_file, parser) result = doc.xslt(style) - if result.find('//h1') is not None: + print result + if result.find('//div') 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') -- 2.20.1