Hey, thanks for replying! I must say this app has kind of changed my life, and I'm really enjoying learning from this community.
The
title of my lifelog tiddlers begins with the date and time they're
created, and the 'created' field mirrors that. They're also all tagged
'lifelog'.
For each 'day' in the wiki I
have a tiddler generated by the simplecalendar plugin. The title of that
tiddler matches the date on the lifelogs, but it's created field wont.
This is the code I currently have in that 'day' tiddler template
<$list filter="[sameday:created[20190424]]+[tag[lifelog]] +[sort[created]] ">
<$link>
<$view field="created" format="date" template="DD mmm YY at hh:mm"/></$link>
<$transclude field="text" mode="block"/>
</$list>
This
shows me exactly what I need, and I can easily replicate this with
other tags to create a nice synopsis of what I did on that day. But how
can I get the date in bold to match up with the date in the title of
the tiddler (the title is formatted 2019-04-24)? I'd rather not have to
type this in for every day individually.
Thanks again Mark!