I have dictionary tiddler listing holidays in this format
20250101:New Year Day
20250129:Chinese New Year (Year of Wood Snake)
20250214:Valentine's Day
And then I use this code to check date and pull up holiday
<$transclude tiddler="$:/Holidays" index=<<now YYYY0MM0DD>>><$fill $name="ts-missing">Oridinary Day</$fill></$transclude>
After updating to 5.3.7 it no longer works. I have change it to
<$transclude tiddler="$:/Holidays" index=<<now YYYY0MM0DD>>>Oridinary Day</$transclude>
as describe in Tiddlywiki site “If no slots values are specified within the $transclude
widget then the entire content of the widget is used as the missing content.”
I have notice that in my code I use $transclude tiddler
instead of $transclude $tiddler
as show in https://tiddlywiki.com/#TranscludeWidget. Using $transclude $tiddler
will transclude the entire dictionary though.
Everything works as I want now after I remove “ts-missing” bit. I just want to know if my code previously worked because it was a bug that has now been fixed?