I want to create a list of tiddlers that contain the current tiddler’s title in the text, e.g.:
“Reference Tiddler” should contain the list
in the list there should be links to the Tiddlers that contain “Reference Tiddler” in their text
So far I couldn’t find a solution for this and can’t do it on my own. I am new to TiddlyWiki and also don’t have experience with javascript. Nonetheless this could be a great tool for me and I hope that you can help me with that.
Springers solution is working for me.
Will this search for a string if used often be an issue later on? Right now I am saving all files outside the wiki and link to them to keep it smaller. Or does that not change anything
I’m not sure what you mean by “files”. Image files are notorious for bogging down a TiddlyWiki project if they are actually stored as data within image tiddlers…
But this question about the performance of a <<list-links>> macro — one whose filter searches every other tiddler’s text field — should not be directly affected by this question of where your “files” are stored.
It does, however, matter just how much text is being searched.
The fact that Joses is only mentioned a handful of times doesn’t matter. This list-links macro still trawls through all 32 thousand tiddlers, looking for “Joses” in the text field. So it takes a couple seconds to render.
Looking for [<currentTiddler>backlinks[]] (tiddlers with links to the current tiddler) is faster, though, since links are more efficiently tracked.
Keep in mind freelinks can be turned off when not in use, and a list links could be hidden behind a details widget, or in a tiddler that only generates the list on demand.