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'm not sure if this is an issue or not, but I was surprised with the following behaviour:
s.slugify("ABC XYZ")returns "a-b-c-x-y-z". I think the expected value would be "abc-xyz"
s.slugify("ABC XYZ")
"a-b-c-x-y-z"
"abc-xyz"
The text was updated successfully, but these errors were encountered:
i have experienced this as well in the past with capitalization. Is this considered a bug? if so i can attempt to do a pull
Sorry, something went wrong.
Yes this is a bug but I have a feeling we've fixed this already once :) PR welcome if it happens on the master too.
And yeah abc-xy is the expected result.
abc-xy
Yes, I confirm that it is fixed in master (fixed with #448).
No branches or pull requests
I'm not sure if this is an issue or not, but I was surprised with the following behaviour:
s.slugify("ABC XYZ")
returns"a-b-c-x-y-z"
. I think the expected value would be"abc-xyz"
The text was updated successfully, but these errors were encountered: