forked from kenkeiras/org-rw
Use more robust list de-indentation handler.
This commit is contained in:
parent
d67bae645b
commit
7008124509
@ -457,17 +457,20 @@ class Headline:
|
|||||||
current_node = sublist
|
current_node = sublist
|
||||||
indentation_tree.append(current_node)
|
indentation_tree.append(current_node)
|
||||||
|
|
||||||
while len(indentation_tree) > 0 and (
|
while len(indentation_tree) > 0:
|
||||||
(len(indentation_tree[-1].children) > 0)
|
list_children = [
|
||||||
and len(
|
|
||||||
[
|
|
||||||
c
|
c
|
||||||
for c in indentation_tree[-1].children
|
for c in indentation_tree[-1].children
|
||||||
if isinstance(c, dom.ListItem)
|
if isinstance(c, dom.ListItem)
|
||||||
][-1].orig.indentation
|
]
|
||||||
)
|
|
||||||
> len(line.indentation)
|
if ((len(list_children) > 0)
|
||||||
):
|
and (len(list_children[-1].orig.indentation)
|
||||||
|
<= len(line.indentation))):
|
||||||
|
# No more breaking out of lists, it's indentation
|
||||||
|
# is less than ours
|
||||||
|
break
|
||||||
|
|
||||||
rem = indentation_tree.pop(-1)
|
rem = indentation_tree.pop(-1)
|
||||||
if len(indentation_tree) == 0:
|
if len(indentation_tree) == 0:
|
||||||
indentation_tree.append(rem)
|
indentation_tree.append(rem)
|
||||||
|
Loading…
Reference in New Issue
Block a user