mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Also remove comments when splitting HTML trees. Fixes #2896 (ereader .pdb creation error when converting from .html, but not from .epub)
This commit is contained in:
parent
70a254267c
commit
db747c1a92
@ -301,30 +301,26 @@ class FlowSplitter(object):
|
|||||||
|
|
||||||
# Tree 1
|
# Tree 1
|
||||||
hit_split_point = False
|
hit_split_point = False
|
||||||
for elem in list(body.iterdescendants(etree.Element)):
|
for elem in list(body.iterdescendants()):
|
||||||
if elem is split_point:
|
if elem is split_point:
|
||||||
hit_split_point = True
|
hit_split_point = True
|
||||||
if before:
|
if before:
|
||||||
x = elem.get('id', None)
|
|
||||||
nix_element(elem)
|
nix_element(elem)
|
||||||
|
|
||||||
continue
|
continue
|
||||||
if hit_split_point:
|
if hit_split_point:
|
||||||
x = elem.get('id', None)
|
|
||||||
nix_element(elem)
|
nix_element(elem)
|
||||||
|
|
||||||
|
|
||||||
# Tree 2
|
# Tree 2
|
||||||
hit_split_point = False
|
hit_split_point = False
|
||||||
for elem in list(body2.iterdescendants(etree.Element)):
|
for elem in list(body2.iterdescendants()):
|
||||||
if elem is split_point2:
|
if elem is split_point2:
|
||||||
hit_split_point = True
|
hit_split_point = True
|
||||||
if not before:
|
if not before:
|
||||||
x = elem.get('id', None)
|
|
||||||
nix_element(elem, top=False)
|
nix_element(elem, top=False)
|
||||||
continue
|
continue
|
||||||
if not hit_split_point:
|
if not hit_split_point:
|
||||||
x = elem.get('id', None)
|
|
||||||
nix_element(elem, top=False)
|
nix_element(elem, top=False)
|
||||||
body2.text = '\n'
|
body2.text = '\n'
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user