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
meta
In the HTML output, there are a couple meta tags being generated by Ronn.
<meta http-equiv='content-type' value='text/html;charset=utf8'> <meta name='generator' value='Ronn/v0.7.3 (http://github.com/rtomayko/ronn/tree/0.7.3)'>
I think these are invalid. The meta element doesn't take a name attribute; it takes a content attribute instead. These should be:
name
content
<meta http-equiv='content-type' content='text/html;charset=utf8'> <meta name='generator' content='Ronn/v0.7.3 (http://github.com/rtomayko/ronn/tree/0.7.3)'>
The text was updated successfully, but these errors were encountered:
Superset of #81.
Sorry, something went wrong.
Fixed in my Ronn-NG fork at apjanke/ronn-ng@d645829.
No branches or pull requests
In the HTML output, there are a couple
meta
tags being generated by Ronn.I think these are invalid. The
meta
element doesn't take aname
attribute; it takes acontent
attribute instead. These should be:The text was updated successfully, but these errors were encountered: