Get a list of all Tasks in a file. I have timestamped sections in the file where I can put specific notes and tasks (I tab in underneath a date field I use as the section header) regarding the meeting that happened in that section.
You’re most likely messing with the markdown format so the tasks are not recognised. Try adding a newline in front of the task, or don’t “tab in” the task.
In either way, showing us the actual offending text with surrounding text lines can help us to further track your actual case. Please enclose the text in three or more backticks before presenting it here in the forum.
If you click the link in the first post that’s how the Obsidian team recommends to do the double paths. I am new so I don’t understand just following orders .
Then there is most likely something related to how you’ve written your tasks. Try removing the indentation, or inserting a line before the tasks. Or try adding a separate task on a line completely on its own.
And the second part I was asking for is what have you written in your note around the text “Bryce will send us… Complete Phase 0”. Insert that as text in between triple backticks, not as an image.
Something like:
```
> Bryce will send us ...
>
- [ ] #todo #Casey Complete Phase 0
```
This will help us tell why your task is not conformant (as I suspect is the case) and doesn’t show up in your task query.
Using just a tab to indent the text doesn’t produce markdown where the task is recognised as a task. I’d either shift to using lists or callouts to achieve better formatting and valid markdown where the tasks are recognised.
Try the following in a file of its own and see the difference:
```tasks
not done
path includes {{query.file.path}}
```
10/5/23 Kickoff Meeting
Bryce, Sabrina, and Mike from Prophix on call
Bryce will send file
File will be used for validation
[ ] #todo #Casey Complete phase 0
- 10/5/23 Kickoff Meeting
- Bryce, Sabrina, and Mike from Prophix on call
- Bryce will send file
- File will be used for validation
- [ ] #todo #Casey Complete phase 1
> [!info]+ 10/5/23 Kickoff Meeting
> Bryce, Sabrina, and Mike from Prophix on call
> Bryce will send file
> File will be used for validation
> - [ ] #todo #Casey Complete phase 2
And as you can see both of the last two examples tasks are listed in the query at the top, whilst the first example is not a valid task so it’s not showing in the query results.