-
Notifications
You must be signed in to change notification settings - Fork 150
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
Un-terminated markup codes like <hr> cause issues #9
Comments
Improving the error message is the way to go. There's a new parser that still has to be merged that address this by giving the following message:
|
Perfect! |
@brainlid the new parser on master accepts HTML void elements like |
@brainlid BTW, with the new parser you'll have to make a small change in you
instead of:
|
This markup was copied from an EEx template into a
~H
one.The problem is the
<hr>
. The compiler error is:After trial and error I realized it was the
<hr>
. When I changed it to<hr />
then it worked fine.The solution is either support markup like the non-xml valid
<hr>
or improve the error message to help identify what the problem is.The text was updated successfully, but these errors were encountered: