-
Notifications
You must be signed in to change notification settings - Fork 25.5k
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 parser: text nodes do not close void tags #5528
Comments
I was getting errors when closing tags as in |
I got errors using |
I tried also |
The reason is that you have a text node " " (white space) after your img tag. Note that your html is valid but because of a bug in our parser things went wrong. Before the next release, you should remove the space. |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
<h1> start <br> end </h1>
br is not closed
The text was updated successfully, but these errors were encountered: