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:LinkDivClasses/answer

18th April 2021 at 10:15am
\define excerptify(title)
  <$wikify name=wikitext text={{$title$}}>
    <$text text={{{ [<wikitext>split[]first[200]join[]] }}} />...
  </$wikify>
\end

\define linkDisplay(title, filterFragment, cssClass)
<div class=<<__cssClass__>>>
$title$:

<ul>
<$list filter="[all[current]$filterFragment$]">
  <li>
    <$link />
    <div class="sib-excerpt">
      <$macrocall $name="excerptify" title={{!!title}}/>
    </div>
  </li>
</$list>
</ul>
</div>
\end

<div class="sib-link-display">
  <<linkDisplay "Links" "links[]" "sib-links">>
  <<linkDisplay "Backlinks" "backlinks[]" "sib-backlinks">>
</div>
Go to question: Ex:LinkDivClasses