slugify
slugify copied to clipboard
Converts a string to a slug, useful for URLs, filenames, IDs, and more
Example 1 Input `ငယ်ငယ်ရွယ်ရွယ်နဲ့ ဆံပင်ဖြူခြင်း` output `-` Example 2 Input `बदले उसीएक् निर्माण करके(विशेष` output `---`
Let's take this example string : `This IS- a C/O/MPLEX STRING - look@THAT` According to regular slugifiers (https://slugify.online/), this string slugified should be `this-is-a-complex-string-lookthat` However, with default slugify(), it will...
- Added support for Unicode slugs by changing regular expressions. - Added test case based on Georgian language to test the new feature (e.g. Unicode slugs)