Create a slug from a title

Hi there,

On my blog page I want to convert a title text into a slug, i.e., strip characters not in the English character set.

(How) Can that be done in Weweb?

Thank you and best regards

You could regex it with custom JavaScript like this inside Change Variable Value action:

return [your_string_data].normalize("NFD").replace(/[\u0300-\u036f]/g, "")