I’m trying to aggregate tagged checklists in order to create a general task list. I’m using queries (and search) with the following.
line:"[ ]" tag:#today
Running this will return results twice, once for [ ]
and another for #today
, which is incorrect. The only way I managed to get this to work properly is running a regex, but that doesn’t take advantage of tag’s cache function. Is this working as intended or am I just using it tag:
and line:
wrong?