I want to slugify a value, for example "slugName = Spain & Italy"
When I make my slug in TWIG {{ slugName|slugify }}
, the result is Spain_amp_Italy
Is it possible to set a REGEX in Twig, so that my "&" for example will be translated in "and" ? THANKS