This is a stripped-down version of a single section of Grok TiddlyWiki, optimized for fast loading and readability by search engines. Some features are missing.

For the full Grok TiddlyWiki experience, please visit the wiki version of this page.

Ex:LinkTooltipNonReplace/answer

 1st September 2024 at 8:47am

An easy solution based on the ~ filter run prefix:

\widget $link(to, tooltip:"")
  <$let tip={{{ [<tooltip>!is[blank]] ~[<to>get[description]] }}}>
    <$genesis
      $type="$link"
      $remappable="no"
      to=<<to>>
      tooltip=<<tip>>
    >
      <$slot $name="ts-raw"/>
    </$genesis>
  </$let>
\end

[[Links]] and <$link to=Tags tooltip="I love tags!">Tags</$link> combine to organize [[Tiddlers]] within a wiki.

Links and Tags combine to organize Tiddlers within a wiki.

Go to question: Ex:LinkTooltipNonReplace