I am using Tidgraph to display the graph for tag/tiddler relationship.
The filter
option can be used to filter the specific tag, e.g.
<$tidgraph start="root" filter="[tag[Domain]]" />
I would like to filter for two tags (i.e. tillders with tag Domain
or Doc
).
Is there a way to achieve it?
PS: this is the js codes used in tidgraph.
filter = '[[' + tid + ']tagging[]]+' + tidtree.filter;
where tid is the tiddler name of starting point.