Regards
Tony
<$set name="todayMonthDay" value=<<now 0MM0DD>>>
<$list filter="[all[tiddlers]]" variable="tiddler">
<$set name="monthDay" value={{{ [<tiddler>get[created]split[]last[13]first[4]join[]] }}}>
<$list filter="[<monthDay>match<todayMonthDay>]">
<<tiddler>>
</$list>
</$set>
</$list>
</$set>Cheers,Josh
Cheers,Josh
<$set name="todayMonthDay" value=<<now 0MM0DD>>>
<$list filter="[all[tiddlers]]" variable="tiddler">
<$set name="monthDay" value={{{ [<tiddler>get[created]split[]last[13]first[4]join[]] }}}>
<$list filter="[<monthDay>match<todayMonthDay>]">
<$link to=<<tiddler>>><<tiddler>></$link>
</$list>
</$set>
</$list>
</$set>Cheers,Josh
<$link to=<<tiddler>>><<tiddler>></$link>
The content of the link widget is rendered within the <a> tag representing the link. If the content is empty then the title of the target tiddler is rendered as the default.
For example, <$link to="HelloThere"/> is equivalent to <$link to="HelloThere">HelloThere</$link> and <$link/> is equivalent to <$link to=<<currentTiddler>>><$view field="title"/></$link>.