How to check that a checklist has been used?

I have a checklist.md with questions that I want to verify have been checked for each job.

My current implementation follows.

checklist.md


- What is the strongest counterargument? [type:question][id: 1]
- What more could I research? [type:][type:question][id: 2]

some_topic.md

---
type: topic
topic_name: some_topic
---

## Checklist

### What is the strongest counterargument? [type:question][id: 1]

Something something

### What more could I research? [type:][type:question][id: 2]

Something something

I imagine that on checklist.md I can write a query for all questions on checklist.md, a query for all topics and questions on those pages, then somehow create a matrix out of this.

I’m looking for help

  • Guidance on how to write the query
  • Or a better/simpler way to implement my checklist for topics