Hello,
This snippet will create a list of links to the non-system tiddlers created the same day.
<<list-links filter:"[sameday:created{!!created}!is[system]]">>
Let’s unpack the magic of the filter:
-
samedaywill look for tiddlers whose updated date matches what you select,someday:createduses the created field instead -
{!!created}points to the created date of the current tiddler -
!is[system]excludes tiddlywiki internals
Feel free to add something like tag[JournalEntry] if you want to limit it to things tagged with JournalEntry.
Regards