Journal note : get the list of created tiddlers on that date

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:

  • sameday will look for tiddlers whose updated date matches what you select, someday:created uses 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