fnp
/
wolnelektury.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8b10684
)
Changed check if HTML file should be generated to search for //div.
author
Marek Stępniowski
<marek@stepniowski.com>
Thu, 9 Oct 2008 14:13:44 +0000
(16:13 +0200)
committer
Marek Stępniowski
<marek@stepniowski.com>
Thu, 9 Oct 2008 14:13:44 +0000
(16:13 +0200)
lib/librarian/html.py
patch
|
blob
|
history
diff --git
a/lib/librarian/html.py
b/lib/librarian/html.py
index
f5ad138
..
6a4ad5e
100644
(file)
--- 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')