Modifier: slugify
Converts the string into an URL slug. This includes replacing non-ASCII characters with their closest ASCII equivalents, removing remaining non-ASCII and non-alphanumeric characters, and replacing whitespace with dashes. And then everything is lowercased.
string: Please, have some lemoƱade.
{{ string | slugify }}
please-have-some-lemonade
Additional Reading
Learn how to use and chain modifiers in the Antlers template guide.