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
If you render a page in Plone 6, you will see a duplicate charset meta element:
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>My site title</title> [...] <meta charset="utf-8" /> [...] </head>
As stated in https://www.w3.org/International/questions/qa-html-encoding-declarations, "The declaration should fit completely within the first 1024 bytes at the start of the file, so it's best to put it immediately after the opening head tag".
Expected behaviour: have only one <meta charset="utf-8" /> element right after the opening head tag.
<meta charset="utf-8" />
head
The text was updated successfully, but these errors were encountered:
Also discussed in https://community.plone.org/t/http-equiv-meta-tag/14709.
Sorry, something went wrong.
No branches or pull requests
If you render a page in Plone 6, you will see a duplicate charset meta element:
As stated in https://www.w3.org/International/questions/qa-html-encoding-declarations, "The declaration should fit completely within the first 1024 bytes at the start of the file, so it's best to put it immediately after the opening head tag".
Expected behaviour: have only one
<meta charset="utf-8" />
element right after the openinghead
tag.The text was updated successfully, but these errors were encountered: