So when using <<now>>
you can prefix the format with [UTC]
to get the utc time, however I’m not sure how to achieve this using format:date.
Here’s what I have so far, I’m just trying to create some text that onHover lets me see the local time, but otherwise shows the UTC time of the last modified tiddler.
<$let
local={{{ [haschanged[]get[modified]format:date[YYYY-0MM-0DD @ 0hh:0mm:0ss TZD]!sort[modified]] -[prefix[$:/state/]] -[prefix[$:/temp/]] -[prefix[$:/StoryList]] -[prefix[$:/HistoryList]] +[limit[1]] }}}
utc="<$text text={{{ [haschanged[]get[modified]format:date[YYYY-0MM-0DD @ 0hh:0mm:0ss]!sort[modified]] -[prefix[$:/state/]] -[prefix[$:/temp/]] -[prefix[$:/StoryList]] -[prefix[$:/HistoryList]] +[limit[1]] }}} >"
>
<div class="tc-site-update">
<small>
<$button to="" class="tc-btn-invisible" tooltip=<<local>> >
''Last updated:'' <<utc>>
</$button>
</small>
</div>
</$let>