EDIT: I found the solution in a reported issue in github:
in the meantime you can use the
date
filter, e.g.{{date|date:"YYYY-MM-DD"}}
So I changed my titledate value to be: {{date|date:"YYYY-MM-DD"}} {{title}}
and it works!
What I’m trying to do
I have a “titledate” field that combines datecreated (“YYYY-MM-DD”) with the title, and I can’t find a way to get the value of that field into the Web Clipper template.
Frontmatter:
Web Clipper
Things I have tried
#4 is so close… I just need to add a space in between the date and title, and I need the date to be YYYY-MM-DD
{{date}} {{title}}
=> 2024-11-13T15:39{{datecreated}} {{title}}
=> 2024-11-13T15:39{{date}}.concat({{title}})
=> 2024-11-13T15:48:58-05:00.concat(Espresso){{date}}{{title}}
=> 2024-11-13T15:51:43-05:00Espresso{{YYYY-MM-DD}}{{title}}
=> Espresso{{date:YYYY-MM-DD}}{{title}}
=> Espresso{{date:'YYYY-MM-DD'}}{{title}}
=> Espresso