slugify
slugify copied to clipboard
Slugify a string
Heya, great one. Can we add `options.transliterate` so we can disable transliteration? Defaulting to `true` if you will so. https://github.com/sindresorhus/slugify/blob/b841d04d92533469714e586435ed4c1b3b451d8c/index.js#L46 to ```js string = options.transliterate ? transliterate(string, {customReplacements}) : string;...
Would be great if you could config compund slugs with 2 or more fields like title and id.
I want use it with chinese language, so can it support?
HI Sindre I have been using your slugify and I find it very useful. So thank you for offering it. I discovered that a url containing a dot is converted....
For popular things that makes sense. Suggestions welcome, but I'm not going to add more than maybe 30. So make it worth it. Don't do a PR. I'll add them...
A plural of an acronym with decamelization enabled currently results in: ```js slugify('Util APIs'); // util-api-s ``` It would be nicer if plurals were detected and ignored during decamelization so...