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
Void elements as described in the HTML spec should not start a CommonMark HTML block, because void elements cannot have any content.
The void elements are:
area base br col embed hr img input link menuitem meta param source track wbr
E.g. neither of these should start an HTML block, but currently do as they match HTML block Start condition 7:
<img src="x.jpg>
<img src="x.jpg" />
The text was updated successfully, but these errors were encountered:
Accomodate HTML void elements
699f9a5
Refs commonmark#435
I propose the spec be changed to something like this: #436
Sorry, something went wrong.
No branches or pull requests
Void elements as described in the HTML spec should not start a CommonMark HTML block, because void elements cannot have any content.
The void elements are:
E.g. neither of these should start an HTML block, but currently do as they match HTML block Start condition 7:
The text was updated successfully, but these errors were encountered: