I am not certain what your last line means, but the first part isn't too hard:
The easiest way to build it I can think of at the moment would be to use a list field to define the whitelisted tags for each tiddler, so you would have a field, in the example below called see_also_tags, and in that field you would list all of the tags you want whitelisted for the tiddler. You need to put [[ and ]] around any tags that have spaces in the names, and you need spaces between tags like this ATag [[Some multi word tag]] [[some other tag]]. (I just put that last bit in because I always forget that part.) Create a custom view template with this (that is make a tiddler with whatever name you want, give it the tag $:/tags/ViewTemplate and put this in the text field): <$list filter='[list[!!see_also_tags]]' variable=CurrentTag> <$list filter='[tag<CurrentTag>limit[1]]'> See Also: <$list filter='[tag<CurrentTag>]'> </$list> </$list> </$list> You can change the name of the field used to whatever you want. You may want to add tag[Article] or something else to the inner filters, but this general form should get you what you want. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/tiddlywiki. To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/c5c0eb24-dfeb-4106-95e0-0b70f3b1b83f%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

