"TopicX" (Table of Contents)"TopicX Concepts" (TopicX)
Concept1 ("TopicX Concepts")
Concept2 ("TopicX Concepts")etc
"TopicX Sources" (TopicX)"TopicX Definitions" (TopicX)
"TopicY" (Table of Contents)"TopicY Concepts" (TopicY)"TopicY Sources" (TopicY)"TopicY Definitions" (TopicY)
If you maintain a naming standard where say all concepts have concepts at the end of the title you can list all tiddlers with the suffix[concepts] and if all topics begin topic prefix[topic]
But you could add a concept tag to each tiddler made easier by creating a concept using new here on the topic, add the concept tag the clone the first concept to create new ones, they will already have the topic and concept tag.
Regards
Tony
Tony
The first `$list` creates a list of all `tags` that have ''Examples'' as the last word in the tag.
<$list filter="[all[tiddlers]tags[]suffix[Examples]]">
<$macrocall $name="tag" tag=<<currentTiddler>>/>
</$list>
The second `$list` creates a list of all tiddlers that have those tags.
```
<$list filter="[all[tiddlers]tags[]suffix[Examples]]" variable="exmpl">
<$list filter="[tag<exmpl>]">
</$list>
</$list>
```
<$list filter="[all[tiddlers]tags[]suffix[Examples]]" variable="exmpl">
<$list filter="[tag<exmpl>]">
</$list>
</$list>