Advertisement
dhniceday

logToDailyNote

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