Right now I am using [[date| %B %d, %Y]]
That doesn’t name the day of the week.
How do I construct the action to give me Monday, October 25, 2021 ?
Right now I am using [[date| %B %d, %Y]]
That doesn’t name the day of the week.
How do I construct the action to give me Monday, October 25, 2021 ?
Like this
[[date|%A, %B %d, %Y]]
For future reference, see the section on date tags in the article below for details. It links out to references and online tools to assist in creating strftime format strings.
@sylumer Thanks.
@agiletortoise Before I posted I looked at that guide and the link to Dr Drang but didn’t see how to format day of the week (A%). The subsequent link to strftime.net does show that, however.
I think you meant %A
. The order of those two characters is important.