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
Describe the bug A clear and concise description of what the bug is. Opening my rss feed: https://www.metal3d.org/index.xml
But W3C says that it's ok: https://validator.w3.org/feed/check.cgi?url=https%3A%2F%2Fwww.metal3d.org%2Findex.xml
To Reproduce Steps to reproduce the behavior: 1.Add my feed 2. see error
Expected behavior The feed should be displayed
Platform (please complete the following information):
The text was updated successfully, but these errors were encountered:
It seems that the regular expression parsing XML encoding lacks a greedy modifier. Will fix in the next release.
XML_ENCODING_RE = /^<\?xml.+encoding="(.+)".*?\?>/i // problematic XML_ENCODING_RE = /^<\?xml.+encoding="(.+?)".*?\?>/i // correct
Sorry, something went wrong.
No branches or pull requests
Describe the bug
A clear and concise description of what the bug is.
Opening my rss feed: https://www.metal3d.org/index.xml
But W3C says that it's ok:
https://validator.w3.org/feed/check.cgi?url=https%3A%2F%2Fwww.metal3d.org%2Findex.xml
To Reproduce
Steps to reproduce the behavior:
1.Add my feed
2. see error
Expected behavior
The feed should be displayed
Platform (please complete the following information):
The text was updated successfully, but these errors were encountered: