Hi everybody,
I'm new to TiddlyWiki and I'm trying to use it to create a project-specific to-do list. Please bear with me if this is a pretty simple question, but I think I may need to use a tiddler field (tiddler title) as a filter argument. Let me explain:
Each project is a tiddler with a task list, let's say it's called Project1.
Each task is named with the following convention Project1:Task1.
The Project1 tiddler has the following wikitext, styled after the TaskManagementExample tiddler on
tiddlywiki.com:
! Outstanding tasks
<$list filter="[!has[draft.of]tag[task]!tag[done]sort[created]regexp[{{!!title}}]]">
<$checkbox tag="done"> <$link to={{!!title}}><$view field="title"/></$link></$checkbox>
</$list>
! Completed tasks
<$list filter="[!has[draft.of]tag[task]tag[done]sort[created]regexp[{{!!title}}]]">
<$checkbox tag="done"> ~~<$link to={{!!title}}><$view field="title"/></$link>~~</$checkbox>
</$list>
Please note that I've added a regexp filter operator to only find the tasks relevant to Project1. I get this to work when I put the operator regexp[Project1], but I would like this wikitext to work on all of my project tiddlers.
I hope that's clear. Does anybody know why this doesn't work?
Thanks!