Obsidian is a free and open-source software for taking notes and managing your digital life. One of many nice options of Obsidian is its potential to make use of templates to shortly and simply create new notes. You’ll be able to create a template for something, from a every day journal entry to a gathering agenda.One widespread factor you would possibly wish to add to a template is at the moment’s date. This may be helpful for protecting monitor of when notes have been created, or for making a every day log of your actions.There are two methods so as to add at the moment’s date to a template in Obsidian.
The primary manner is to make use of the `{{date}}` variable. This variable will mechanically get replaced with at the moment’s date once you create a brand new notice from the template.To make use of the `{{date}}` variable, merely add it to your template. For instance, the next template will create a brand new notice with at the moment’s date on the high:““““`## Day by day Log Date: {{date}}“““ Notes: “`The second manner so as to add at the moment’s date to a template is to make use of the `date()` operate. The `date()` operate takes a format string as its argument. The format string specifies how the date must be formatted.For instance, the next template will create a brand new notice with at the moment’s date formatted as “YYYY-MM-DD”:“`## Day by day Log Date: {{date(“YYYY-MM-DD”)}}“““ Notes: