Tobiasch, Somewhat similar to your need, I did the following
I ham happy to have markup in my wikitext, so I created Question and answer CSS ".q and .a " which I uses like this ;.q This is the Question :.a This is the answer if available And you could use @@.q The Question @@ or a white list. I then added the following to a tiddler tagged $:/tags/viewtemplate <$list filter="[all[current]search[.q ]limit[1]]" variable=null> @@.q Tiddler contains ( <$list filter="[all[current]search[.q ]]"> <$count filter="[all[current]search[.q ]]"></$count>+ </$list>) Question(s) @@ </$list> <$list filter="[all[current]search[.a ]limit[1]]" variable=null> @@.a Tiddler contains ( <$list filter="[all[current]search[.a ]]"> <$count filter="[all[current]search[.a ]]"></$count>+ </$list>) Answer(s)@@ </$list> This detects and notifies the user if Questions and answers are contained. Perhaps you could use the search filter, and have the result be a link to the key word? Its not a full answer, but a possible path to resolution. Regards Tony On Tuesday, 28 November 2017 23:13:29 UTC+11, tobaisch wrote: > > or even a plugin that automatically link words they are in a whitelist. > this one is maybe easier. > for example: > In my whitelist are two words: "nice" & "day" > I have a lot of tiddlers and exactly two tiddlers with the title: "nice" & > "day". > I write the following text in a new tiddler. Today is a nice day and that > is an example. > After saving the new tiddler, only the words "nice" and "day" in this text > are automatically linked to this tiddlers *nice* and *day*. > the word *nice *to the tiddler with the title nice and > the word *day *to the tiddler with the title day, of course separately. :) > -- 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 https://groups.google.com/group/tiddlywiki. To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/530a5619-3f68-47cd-8ec2-24d5a8901bfe%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

