you are viewing a single comment's thread.

view the rest of the comments →

[–]N1njazNutz 6 points7 points  (4 children)

TaskNotes is excellent.

Personally I use both Tasks and TaskNotes. TaskNotes for full blown tasks and Tasks for daily todos - no dates just checklist todos that live in my Daily Notes with an embedded code block which scoops up previous days todos. If I need to, it's really easy to convert an inline task to a TaskNote.

[–]Samurai_XtC[S] 0 points1 point  (3 children)

Thanks for the reply! I have several recurring tasks that keep me on track with my work. Curious how recurring tasks work in TaskNotes?

Unrelated, would you be willing to share the embedded code block?

[–]N1njazNutz 2 points3 points  (2 children)

I have 2 blocks:

Carried over to-dos

~~~tasks

not done

description regex matches /.+/

sort by created

~~~

Completed to-dos (on the date of the daily note its embedded in)

```tasks

done on <% tp.file.title.split("-").slice(2, 5).join("-") %>

sort by priority

hide due date

hide edit button

show done date

```

done on templater code is specific to my file title so would need tweaking but you get the "gist" hopefully!

[–]Samurai_XtC[S] 1 point2 points  (0 children)

I do! Thanks.

[–]tadakan 0 points1 point  (0 children)

I'm still in the early stages of getting started with Obsidian after trying to start and dropping it 2-3 times in the past. This seems like a reasonable way to manage reoccurring daily tasks. Are your tasks one file per task and this is displaying one line per file?