We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
<li>
<blockquote>
In <li>, empty lines still get indenting spaces (spaces replaced with · in output):
·
from markdownify import markdownify as md html = """ <ul> <li> <p>1</p> <p>2</p> </li> </ul> """ print(md(html)) # *·1 # ·· <-- HERE # ··2
Similarly in <blockquote> empty lines get trailing marker spaces:
from markdownify import markdownify as md html = """ <blockquote> <p>1</p> <p>2</p> </blockquote> """ print(md(html)) # >·1 # >· <-- HERE # >·2
These empty spaces are unnecessary and can be omitted for brevity.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
In
<li>
, empty lines still get indenting spaces (spaces replaced with·
in output):Similarly in
<blockquote>
empty lines get trailing marker spaces:These empty spaces are unnecessary and can be omitted for brevity.
The text was updated successfully, but these errors were encountered: