Giving this its own post with a clear title, so it’s easy to reference later.
You can automatically insert the date or time while writing a note using Obsidian’s core Templates plugin. You don’t need the Templater or Natural Language plugins.
In this case, it’s better to think of Templates as “partial” chunks of stuff you use to build up a note, rather than a “full” template of a complete note.
To create a a timestamp, create a new file in your Templates folder called “timestamp” (or “thisbenow” or whatever), and add the variable for the current time. As a dirty American with only 12 hours on a clock, mine is:
{{time:h:mm a}}
To add a timestamp anywhere you’re typing in Obsidian, activate the “insert template” command and choose the Timestamp template. Voila, you have the current time magically entered into the note.
If you’re a sophisticated aficionado of the 24-hour clock, you can just use {{time}}. (Complete formatting options available from the moments website).
Create a datestamp the same way. I like to link everything to and from my Daily Notes, so my datestamp template adds the date as a link:
[[{{date:YYYY-MM-DD - ddd MMM D}}]]
Two pro-tips I’ve stolen from elsewheres:
If you use Templates a lot, make the Template command easy to get to as a keyboard shortcut or as a pinned command.
If you specify the format in the template file rather than Templates settings, then the format follows the file when it synchs, and you won’t have to update settings on every device.
This is very interesting. Do you happen to know if there is a way to change the resulting week for example. In my company instead of using ISO weeks they have their own which is offset by 1, for example it is week 8 now and not week7. Any way I can make the result show up as w8?
Here I am 30 minutes later after going down the rabbit hole of moment and templater plugin. I was able to solve my case using templater pluging and this is the command I used to make the week show up one more than the ISO weeks.
<%tp.date.now(“YYYY”)%> WW <% tp.date.now(“WW.d”, “P+1W”) %> with this command I get this result 2022 WW 08.3 as I desired showing week 8 instead of 7 as per ISO.
The syntax with the {{ }} will only work in the core Templates plugin, not Templater. Are you putting that snippet with {{date:... in a file in whatever folder you have told the Templates plugin settings holds your templates (mine is called, uncreatively, “templates”), and then inserted it into your current file with “Insert Template:” and picking the filename of the file where you put the snippet?
My Obsidian 1.5.12 shows among possible Hotkeys:
“Templates: Insert current date”, also time.
I use that with Ctrl-Shift-D and Ctrl-Shift-T.
The conflicting “reopen closed tab” i don’t need.
Hello @EVERYONE i have created a command based on this discussion which makes timestamps like the ones you create in capacities i am very proud of the result. First you create the note Timestamp or whatever, in your templates folder then you make shortcut for inserting templates and then you write [[{{date:YYYY-MM-DD-dddd}}|{{time:HH:mm}}]] or however you want to tweak it into the file Timestamp, then when you use it, it shows time but it’s also a link to the daily note connected to that THANK YOUUUUUU.