where the captial letters represent the tags I want to add.
As the list items are documentation, using a checkbox is not appropriate.
I am still struggling to come to grips with TiddlyWiki 5, so I apologise if this is covered somewhere, if it is I haven't been able to find it.
I have to say, I find the documentation is rather simplistic, it just covers the basics. In various examples, I have found, people are using far more advanced techniques, but I can find no documentation for these techniques
Sincerely Richard.
<$list filter='[tag[Hi]]'>
*<$view field=title/> - <$list filter='[is[current]tags[]]'/>
</$list>
I get:
* UseCase1 -
* UseCase2 - UseCase2
* UseCase3 -
* UseCase4 - UseCase4
The UseCase names are ordinary text not links as they were before, and instead of the progress tag name I get a link to the tiddler.
<$list filter="...">
* <$link><$view field="title" /></$link> - <$view field="tags" />
</$list>
I've tried playing around with the code, but none of my attempts have succeeded. I am sorry to come back on this. I can work out the logic of most computer languages, but the logic behind TW5 code defeats me.
Plus when I search on a keyword $list for instance I get nothing useful, so I am struggling.
<ul><$list filter="[tag[mytag]]"><li><<currentTiddler>><$list filter="[is[current]list[!!tags]]" variable="tag"> -- <<tag>></$list></li></$list></ul>
As you can see initial text is a link, but it links to tiddlers that do not exist. The progess tags are not displayed.
Again no links and all the tags are displayed, not just the ones I am interested in, this is essentially the same result as Jed's suggestion.
<ul><$list filter="[tag[mytag]]">
<li>
<$link><<currentTiddler>></$link><$list filter="[is[current]list[!!tags]]" variable="tag"> -- <<tag>></$list>
</li>
</$list></ul>