Thanks for the tips. I think I’m running into this.
To start: Templates and Templater, both turned on. I know the syntax for Templates + Templater is different, so different template files. I know the Template + Templater have different commands for ‘Insert Template’.
In my basic template, for Templater, I have:
---
creation date: <% tp.file.creation_date() %>
modification date: <% tp.file.last_modified_date("dddd Do MMMM YYYY HH:mm:ss") %>
---
[[00 index|Index]]
## <% tp.file.title %>
Which results in:
creation date: 2021-08-16 06:54
modification date: Monday 16th August 2021 06:57:10
[[00 index|Index]]
test
Great, no problem, but the modification info will never change.
If I change modification date, by adding a +
creation date: <% tp.file.creation_date() %>
modification date: <%+ tp.file.last_modified_date(“dddd Do MMMM YYYY HH:mm:ss”) %>
[[00 index|Index]]
<% tp.file.title %>
I get…
creation date: 2021-08-16 06:54
modification date: <%+ tp.file.last_modified_date(“dddd Do MMMM YYYY HH:mm:ss”) %>
[[00 index|Index]]
test
… and the modification date code is pasted.
I did look here: Dynamic Commands | Templater Maybe something simple, but with the + added to the modification date, the code is always there. Even if I close and reopen the note. Do I mis-understand the refresh problems section? Any idea what I’m doing wrong?