Templater icon indicating copy to clipboard operation
Templater copied to clipboard

How do I represent a date like 5th of current month?

Open ganesshkumar opened this issue 2 years ago • 1 comments

I had gone through the documentation but couldn't find the exact syntax for creating a date like 5th or 10th of this month. Is an any example for this?

ganesshkumar avatar Apr 01 '22 22:04 ganesshkumar

You can just use moment for that:

<% window.moment({ day: 5 }).format('YYYY-MM-DD') %>

If you just want to display it, you don't even need Templater for this. You could use the core Templates plugin:

{{date:YYYY-MM-05}}

liamcain avatar Apr 01 '22 22:04 liamcain