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
I noticed a couple issues in the test cases for slugify -
してください -- should transliterate as shitekudasai instead of sitekudasai
control:\x07notcontrol:\xB5 -- the code point \xB5 is invalid, should be \xC2\xB5 or \u00B5
The text was updated successfully, but these errors were encountered:
The first one would need to be reported to unidecode.
The second one I'm happy to accept a PR :)
Sorry, something went wrong.
Resolved Invalid test cases for slugify
2778929
closes TryGhost#212 -Replaced invalid escape sequence with the required unicode escape sequence.
Successfully merging a pull request may close this issue.
I noticed a couple issues in the test cases for slugify -
してください
-- should transliterate as shitekudasai instead of sitekudasai
control:\x07notcontrol:\xB5
-- the code point \xB5 is invalid, should be \xC2\xB5 or \u00B5
The text was updated successfully, but these errors were encountered: