Tony, one small detail:
The <$view> widget's time output is shifted by time zone. To correct for this, the output template needs to use the "[UTC]" prefix. Thus, for my timezone (West coast, US which is currently 7 hours behind UTC) <$tiddler tiddler="2020073112000000000"> <$view field="title" format="date" template="YYYY 0MM 0DD 0hh:0mm:0ss.0XXX" /> </$tiddler> gives: 2020 07 31 05:00:00.000 (which is 7 hours too early!) while <$tiddler tiddler="2020073112000000000"> <$view field="title" format="date" template="[UTC]YYYY 0MM 0DD 0hh:0mm:0ss.0XXX"/> </$tiddler> gives: 2020 07 31 12:00:00.000 (which is correct) -e -- 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/eb7fa1ad-329a-49af-af25-e8ab9bf96a24o%40googlegroups.com.

