Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // This is a templater script. If you don't know how to use it, please contact me.
- // You have to modify the logHeader declaration. This is the header under which you will log your items
- // You should add the same header to your daily notes template
- <%*
- const logHeader = "###### Log"
- const file = tp.file.find_tfile(tp.date.now("YYYY-MM-DD"))
- console.log('file: ' + file.name)
- var loggedItem = "";
- if (file) {
- loggedItem = await tp.system.prompt("Log to daily note:","",false)
- if (loggedItem !== null && loggedItem !== '') {
- const time = tp.date.now("HH:mm")
- const content = (await app.vault.read(file)).split("\n")
- const index = content.indexOf(logHeader)
- let addContent = "- " + time + " - " + loggedItem
- content.splice(index + 1, 0 , addContent)
- await app.vault.modify(file, content.join("\n"))
- }
- } else {
- new Notice("No daily note found.")
- }
- -%>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement