We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
The following example should return 'ISO-8859-2'.
<meta http-equiv="Content-Type" content="charsetcharset=iso-8859-2">
While html-encoding-sniffer freezes.
line 242: let subPosition = string.substring(position).search(/charset/i);
let subPosition = string.substring(position).search(/charset/i);
subPosition gets the index of the shortened string (from second iteration or third, always 1).
subPosition
The text was updated successfully, but these errors were encountered:
Fix index computation after search() in <meta> extraction
9fd7d44
Closes #6. Closes #7.
a417f6b
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
The following example should return 'ISO-8859-2'.
<meta http-equiv="Content-Type" content="charsetcharset=iso-8859-2">
While html-encoding-sniffer freezes.
line 242:
let subPosition = string.substring(position).search(/charset/i);
subPosition
gets the index of the shortened string(from second iteration or third, always 1).
The text was updated successfully, but these errors were encountered: