I am just starting with TW and have a question:
How to get bjtools Extendable Calendar to display all tiddlers (and not just journal tiddlers) with the creation date as input for selection. A hyperlink from the calendar to the specific tiddler would be a perfect addition.
Hi Luutje, welcome to the forum.
Try this:
\procedure diarydets(i,tiddlerDate,rawDate,tags)
<<i>><br>
<$list filter ="[sameday:created<rawDate>]">
<<currentTiddler>><br>
</$list>
\end
<<newdiary 2025 7>>
Hi, thanks for the quick response.
But do i insert this in a particular shadow tiddler?
If i insert it a new tiddler i become error codes all over
No, i did not installed this one.
But now i have (in a clean environment)and still have issues.
(see attachment).
That is what I expected, so I may have misunderstood your requesf…
Maybe the issue is that the output includes system tiddlers.
If that is the case, then try adding !is[system]
to the filter, like this:
<$list filter="[sameday:created<rawDate>!is[system]]">
-e
That did the trick!
Thank you very much, I appreciate it!