Missing tasks on daily pages

From what you have shared:

  • Your example task is a TODO on today’s journal.
  • Therefore it doesn’t fit in your current default queries, because they look for respectively:
    • “NOW” query for either NOW or DOING, not for TODO
      • notice line [(contains? #{"NOW" "DOING"} ?marker)]
      • to include TODO tasks, add "TODO" (separated by space) inside the curly braces
    • “LATER” query for LATER, not for TODO
      • notice line [(contains? #{"LATER"} ?marker)]
      • to include TODO tasks, add "TODO" (separated by space) inside the curly braces
    • “NEXT” query for TODO, but only after today
      • notice line [(> ?d ?start)]
      • to include tasks of today, add = to make the line [(>= ?d ?start)]
  • Don’t make all of the above changes, but only one that fits your specific needs.
1 Like