Daily notes settings
I’m using the Daily notes plugin to create a new folder for each day in the YYYY-MM-DD
format, while the note itself is saved in /Daily/YYYY-MM-DD/YYYY-MM-DD-ddd
(3 letter day abbreviation gets appended to the format).
Daily notes settings | |
---|---|
Date format | YYYY-MM-DD/YYYY-MM-DD-ddd |
New file location | /Daily/ |
Template file location | Templates/Daily template |
Template #
placed in /Templates/Daily template
1# <% tp.file.title %>
2## ✍️ Scratchpad
3![[Daily/<% tp.date.now("YYYY-MM-DD", 0, tp.file.title, "YYYY-MM-DD") %>/Scratchpad]]
4
5---
6## 📝 Tasks
7#### Over Due
8```tasks
9not done
10due before <% tp.date.now("YYYY-MM-DD") %>
11```
12#### Due Today
13```tasks
14not done
15due on <% tp.date.now("YYYY-MM-DD") %>
16```
17#### New Today
18- [ ]
19---
20## 👨💻 Daily Log
21![[Daily/<% tp.date.now("YYYY-MM-DD", 0, tp.file.title, "YYYY-MM-DD") %>/Daily Log]]
22
23## 👨💻 Meeting Log
24### Topic1
25![[Daily/<% tp.date.now("YYYY-MM-DD", 0, tp.file.title, "YYYY-MM-DD") %>/Topic1]]
26
27---
28## 🗓 Daily Check List
29### Start of Day
30- [ ] Clean up emails
31### End of Day
32- [ ] Check tomorrow's calendar
33
34## ⏳ Other Tasks
35#### No Due Date
36```tasks
37not done
38no due date
39```
40#### Done Today
41```tasks
42done on <% tp.date.now("YYYY-MM-DD") %>
43```