On Thursday, September 24, 2020 at 12:11:17 PM UTC-7, leeand00 wrote: > > If I have many tiddlers in my tiddlywiki that reference a tiddler, I am > able to see which ones in the references, but I'm interesting in seeing > what the link text for the link to that tiddler is. > Is there a way to find this out? >
A tiddler link can be created using the $link widget: <$link to="tiddlername">text</$link> or wikitext syntax: [[text|tiddlername]] When using the $link widget, the content inside the widget can be anything (except another $link widget!). This can include references to variables, transcluded text, inline filters, or anything else you can imagine... even complex blocks of syntax like $list widgets, $reveal widgets, etc. In addition, the to="tiddlername" parameter can also be "soft", where the value is generated by reference to a variable, transclusion from a field value, or constructed dynamically using an inline filter. Furthermore, the to=... parameter can be completely omitted if the link is to the <<currentTiddler>> (e.g., a $link widget contained within the content of a $list), and you can also omit the $link content entirely when the display text is the same as the $link target. <$link to="tiddlername" /> or <$link /> Thus, there are a multitude of different ways that the display text for a link can be specified, generated, or omitted, making it (nearly) impossible to derive all the different bits of display text that may be used to render a link, even if you know the actual tiddlername being linked to. Sorry I can't offer a solution, but hopefully the above explanation illustrates why this is so. -e -- 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 view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/84d29f28-be58-4081-a254-b0ee864dc24do%40googlegroups.com.

