I’ve been tinkering with the viewtemplates in tiddlywiki, and one that I am stuck on right now is the one used for displaying the modified time of a tiddler.
What I want to do is have a relative date show, but if you hover over it, it gives you the exact date. I tried to acheive this with the code below, but I may be overthinking things, because I’m not entirely sure how to add the full timestamp to the title of the span element
<$reveal type="nomatch" state="!!modified" text="" animate="yes" retain="yes">
<span title='<$view field="modified" format="date" template={{$:/language/Tiddler/DateFormat}}/>'>
modified: <$view field="modified" format="relativedate" template={{$:/language/Tiddler/DateFormat}}/>
</span>
</$reveal>
Any help is appreciated, I think my brain is a bit fried haha