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
This RML file cannot be parsed because parsing <> happens before parsing /**/, so it doesn't ignore <body> tag in the comment.
<>
/**/
<body>
This snippet is considered valid by https://validator.w3.org/ tho
<rml> <head> <style> body { /* <body> */ width: 100%; height: 100%; } </style> </head> <body> </body> </rml>
The text was updated successfully, but these errors were encountered:
Make style tags accept xml reserved characters such as in /* <body> *…
e9c3dde
…/, see #341
It is tempting to say "don't do that", but the fix seemed to be very easy (see commit) so I went ahead with it.
Let me know if this change works for you or there are any issues.
Sorry, something went wrong.
Does this commit incur runtime costs?
No, at least nothing that is measurable.
No branches or pull requests
This RML file cannot be parsed because parsing
<>
happens before parsing/**/
, so it doesn't ignore<body>
tag in the comment.This snippet is considered valid by https://validator.w3.org/ tho
The text was updated successfully, but these errors were encountered: