-
-
Notifications
You must be signed in to change notification settings - Fork 889
New issue
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
Bug: newline character after <br> should not be shown as space. #218
Comments
The solution is to change line 414 in html_parser to: |
@Sub6Resources What are your thoughts on the suggested change? |
@Sub6Resources Awaiting your response 🙂 |
Closed
I'm looking into this and your pull request now. Thank you for your patience! |
Merged the PR in. Thank you! |
@Sub6Resources My pleasure :) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Most markdown renderers use
<br/>\n
for newline. Just like flutter_html(1.0), browsers convert\n
into space, but they do not render the space when newline is afterbr
tag.The text was updated successfully, but these errors were encountered: