Remove debug prints

This commit is contained in:
Rémi
2019-11-22 11:49:22 +01:00
parent 6a0e5d8176
commit d23596706d

View File

@@ -152,9 +152,7 @@ class MarkdownConverter(object):
def convert_list(self, el, text):
nested = False
before_paragraph = False
print(el.name, repr(el.next_sibling), repr(text))
if el.next_sibling and el.next_sibling.name not in ['ul', 'ol']:
print(el.name, repr(el.next_sibling))
before_paragraph = True
while el:
if el.name == 'li':