You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This behavior is as if the file KiraListWithComments.md wouldn’t have empty lines between the items of the list.
1. Kira first
1. Kira second
1. Kira third
3. Reasons why the feature is needed
The text inside list items is already wrapped in a li tag. Additional p inside list elements isn’t needed.
List items with p and without it has different interline spacing. See an example of a real list, where items 1, 2 and 3 hasn’t p tag, but items 4 and 5 has:
I can’t find Python Markdown extension and any third-party tool at all, which could resolve this problem. I use HTML Tidy for fixing Python Markdown problems, but for the case described in my MCVE, it doesn’t remove extra p.
If you know of a third-party tool that can solve this problem without changes in python-markdown-comments, please tell me about it.
Thanks.
The text was updated successfully, but these errors were encountered:
1. Summary
It would be nice if python-markdown-comments would prevent adding extra
<p></p>
tags inside<li></li>
if the user adds comments between list items.2. MCVE
2.1. KiraListWithComments.md
or
or
2.2. Command
2.3. Behavior
2.3.1. Current
2 extra
p
tags.This behavior is as if the file
KiraListWithComments.md
would have an empty line between the first and second item of the list.2.3.2. Desired
No
p
tags.This behavior is as if the file
KiraListWithComments.md
wouldn’t have empty lines between the items of the list.3. Reasons why the feature is needed
The text inside list items is already wrapped in a
li
tag. Additionalp
inside list elements isn’t needed.List items with
p
and without it has different interline spacing. See an example of a real list, where items 1, 2 and 3 hasn’tp
tag, but items 4 and 5 has:Extra
p
tags increase a DOM size. A large DOM tree isn’t the best idea.4. Not helped
I can’t find Python Markdown extension and any third-party tool at all, which could resolve this problem. I use HTML Tidy for fixing Python Markdown problems, but for the case described in my MCVE, it doesn’t remove extra
p
.If you know of a third-party tool that can solve this problem without changes in python-markdown-comments, please tell me about it.
Thanks.
The text was updated successfully, but these errors were encountered: