Hello
I created a blueprint to ease adding news on my website. Basically only the title is required on creation, and it is always a date (with format YYYY/MM/DD).
I would like the folder of the page to be automatically named with the format 'YYYY-MM-DD'. I tried the following:
folder:
type: hidden
default: '@slugify-title'
But it simply creates a folder using the 'YYYYMMDD' format.
Is it possible to use a different functions than '@slugify-title'? Ideally being able to use a regex would be nice, but something that would replace '/' with '-' would be ok too.