With the help of @oeyoews we converted the beautifull knightlab-timelimeline to a plugin, that works quite nice. But I am not able to solve some issues yet. Currently my main issue is that I want the widget to be able to navigate to the tiddlers (I would like to use this with the linkcatcher to show the information that will and can not be displayed in the timline in an overlay)
This is my attempt that does not do the job:
const event = {
start_date: startDate,
text: {
// Create a clickable headline that triggers tm-navigate
headline: `<a href="javascript:;"
onclick="$tw.rootWidget.dispatchEvent({type: 'tm-navigate', navigateTo: '${tiddlerTitle}'}, event);
event.stopPropagation(); return false;">${headline}</a>`,
text: processedText
}
For those who enjoy bughunting:
Other issues are:
Solved: Display of dates before Christ.
Display of Lists in the timeline.
Here is the $widget (36.0 KB) and her is the entire plugin (36.0 KB)