Instead of using multiple files for daily notes I have been using 1 text file for 2023 with a bullet point for each entry beginning with the date, time, and the type of entry. I use Alfred on mac and Drafts on ios to quickly add entries to my 2023-s.md file.
My entries look like this:
- 230829 08:01 [[+thought]] : random thought goes here
- 230829 17:21 [[+reflection]] : reflection of the day goes here
- 230830 11:21 [[+thought]] : random thought goes here
- 230830 11:30 [[+thought]] : random thought goes here
Question:
How can I keep my 2023-s.md file usage exactly the same but I want to add using dataview in my daily note to pull specific bullet points and place them under their appropriate headers/callouts in my daily note?
How can I incorporate dataview in a way where its pulling all the bullet points from the 2023-s.md file that have TODAYs date (in yyMMdd format) & contains [[+thought]]
in the bullet point?
What I am trying to do (Example):
##thoughts
```dataview
- display bullet points from 2023-s.md
- matching TODAYs Date (in yyMMdd format)
- display only bullets points that contains "[[+thought]]"
```
What I Tried So Far:
## Thoughts
```dataview
LIST
FROM "01 Projects/01 Daily Notes/2023-s.md"
WHERE contains(text, "[[+thought]]")
```
I can target the file (without the WHERE query), but thats as far as I can get it to work… targeting the specific bullet points within the file is what I’m struggling with.