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

 26th September 2024 at 7:06am
\procedure excerptify(title)
  <$wikify name="contents" text={{{ [<title>get[text]] }}}>
    <$text text={{{ [<contents>split[]first[200]join[]] }}} />...
  </$wikify>
\end

\procedure linkDisplay(title, subfilter, className)
  <div class=<<className>>>
    <<title>>:

    <ul>
      <$list filter="[all[current]subfilter<subfilter>]">
        <li>
          <$link />:
          <div class="sib-links-excerpt"><$transclude $variable="excerptify" title={{!!title}}/></div>
        </li>
      </$list>
    </ul>
  </div>
\end

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