Obsidian is a free and open-source utility for taking notes and managing your digital life. One of many nice options of Obsidian is its capability to make use of templates to rapidly 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 may wish to add to a template is at this time’s date. This may be helpful for maintaining observe of when notes had been created, or for making a every day log of your actions.There are two methods so as to add at this time’s date to a template in Obsidian.
The primary means is to make use of the `{{date}}` variable. This variable will mechanically get replaced with at this time’s date if you create a brand new be aware 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 be aware with at this time’s date on the prime:““““`## Every day Log Date: {{date}}“““ Notes: “`The second means so as to add at this time’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 ought to be formatted.For instance, the next template will create a brand new be aware with at this time’s date formatted as “YYYY-MM-DD”:“`## Every day Log Date: {{date(“YYYY-MM-DD”)}}“““ Notes: