What I’m trying to do
What I’m trying to is to generate a list of lines spread across my vault. What they have is in common, that what I can use to look for them, is the string TODO:
.
I do this because I add TODO like a programmer adds to a comment in the code. It’s not a real task item started with - [ ]
.
If I execute grep -r 'TODO: '
inside my vault folder, it quite does the trick.
The idea is to do this inside a note and, if possible, with a better visualization.
Things I have tried
I tried using Dataview but found out that just indexes the metadata. I tried DataViewJS, as suggested by ChatGPT (sorry about that), but it doesn’t have the method split() to separate the lines in the file so just can match with specific ones, the ones with TODO:
.