Late night last night and now I’m wracking my brain – What’s the obvious thing I’m missing here? I can see from <h4>
that the variable is correctly defined, and if I hardcode it, it shows up perfectly fine.
<$let todayDate="<$macrocall $name='now' format='YYYY'/>-<$macrocall $name='now' format='0MM'/>-<$macrocall $name='now' format='0DD'/>">
<h4>TODAY'S TODO ITEMS (<<todayDate>>)</h4>
<$list filter="[all[tiddlers]tag[TODO]parent<todayDate>]">
<div style="margin-bottom: 10px;">
<<currentTiddler>>
<$button>
Done
<$action-listops $tiddler=<<currentTiddler>> $field="tags" $subfilter="done"/>
</$button>
<$view field="text"/><$link to=<<currentTiddler>>>🔗</$link>
<div style="margin-left: 15px; border-left: 2px solid #ccc; padding-left: 10px;">
</div>
</div>
</$list>
</$let>
Thanks in advance 😮💨