At some point ould the timeline macro be extended to allow the user to manipulate what is displayed for the tiddlers instead of a link? Maybe allowing different list item templates to be specified?
I am thinking of publishing a list of personal observations organized by date. I will probably create some convoluted list widget but the timeline seems the most natural way to do that. But it only renders links and the documentation doesn’t give the impression that one can specify that.
\define timeline-title()
\whitespace trim
<!-- Override this macro with a global macro
of the same name if you need to change
how titles are displayed on the timeline
-->
<$view field="title"/>
\end
So you can do something as follows. I did just add a text “- test” to every element, just to show what it does.
\define timeline-title()
\whitespace trim
<!-- Your new title template comes here -->
<$view field="title"/> - test
\end
<<timeline limit:20>>
Thanks Mario! This worked perfectly. I cloned it and made a bunch of adjustments, and it works great. I did not use the css classes below. I just added 2’s to nullify them and leave them in case I need them later.