> This is fantastic, thank you @BurningTreeC.
>
> A question, when I added it, it didn't give the links to the actual
> tiddlers, just the names. At first it had system tiddlers which had live
> links, but I was able to filter those out, but the regular Tiddlers links
> are not live. I tried to use list-links, but that replicated the results a
> ridiculous amount of times and also didn't have the live links. Any
> suggestions?
>
> Thanks again!
>
> On Monday, August 12, 2019 at 6:27:37 AM UTC-4, BurningTreeC wrote:
>>
>>
>> Hello,
>>>
>>> Basically I am trying to have something I can look at to see tiddlers
>>> from previous years that have the same month and day as today. For example,
>>> I could look and see all Tiddlers created on 11 August, from 2018, 2017,
>>> etc.
>>>
>>> I've been trying to get it to work, but I'm not having any luck.
>>>
>>> Any suggestions?
>>>
>>
>> Hi Josh, this might work:
>>
>> <$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>
>>
>>
Here you go with the same but with tiddler-links:
<$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
>>>
>>
--
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/tiddlywiki/40a375f1-ba3d-4724-9f08-c90978acd31b%40googlegroups.com.