I’m trying to create a template to write a recipe where each ingredient has a checkbox at the beginning. If that checkbox is checked then that item gets copied to a grocery list with a link back to the recipe that it came from.
Example:
Ingredients:
1 Cup FlouR
2 Cups Sugar
Grocery list:
2 Cups Sugar from “Recipe Name”
Things I have tried
I looked into Templator. It looks possible with enough efffort but very tricky to accomplish/maintain.
For the grocery list you could use an embedded search for completed tasks and however you identify recipes. For example if your recipes are all in a folder named “Recipes”:
~~~query
path:"recipes/" todo-done:/./
~~~
The /./ is a regular expression matching any character (so it will show all completed tasks).