wip.py: fix convert_list non closing tags at the end (2)

This commit is contained in:
Adrien Bourmault 2023-04-10 19:20:33 +02:00
parent e556ecdda7
commit 8503da6a42
No known key found for this signature in database
GPG Key ID: 6EB408FE0ACEC664
1 changed files with 0 additions and 1 deletions

View File

@ -912,7 +912,6 @@ def convert_list(markdown_str):
work_str += " "*cur_rank + '<li>' + text + "</li>\n"
for i in range(cur_rank):
work_str += " "*(cur_rank-i-1) + CLOSING[rank_stack.pop()]