-
Notifications
You must be signed in to change notification settings - Fork 126
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
html <br> not suport. #11
Comments
@kingreatwill yeah true, thats still missing. Thanks for reporting. I will add that on the weekend. For now, you can add a new rule for yourself. See examples/add_rule. Something like that (although I haven't tested it yet):
|
Thank you! " ." How to deal with it. |
The escape character ("\") is done because otherwise there would be many side effects from characters that are falsely interpreted as markdown. See issue 7. Thats why the library is escaping any "markdown like" content inside the original HTML content so that final markdown is valid. But I'm thinking about providing an option to disable that as many don't like it 🤷♂️ But the escaping does no harm to how its rendered. It basically just disables the markdown: (with escaping)
1. xxx (without escaping)
|
var html =
want
How to keep it as it is? |
Thank you! |
I just merged the changes. You should be able to update the library with
@kingreatwill please let me know if you find any other HTML snippets that don't output the correct result! |
Thank you very much! |
output
want
The text was updated successfully, but these errors were encountered: