> Anybody know of a way to get the last save date as a macro? I'd love
> to have that in my subtitle.
Here's three different plugins that will do the job:
http://www.TiddlyTools.com/#DatePlugin
<<date filedate "DDD, MMM DDth, YYYY at 0hh:0mm:0ss">>
http://www.TiddlyTools.com/#WikifyPlugin
<<wikify "%0" {{document.lastModified.toString();}}>>
http://www.TiddlyTools.com/#InlineJavascriptPlugin
<script> return document.lastModified.toString(); </script>
or, if you want to avoid installing additional plugins:
* create a tiddler called [[ShowValue]] containing just
"$1" (without quotes)
* <<tiddler ShowValue with: {{document.lastModified.toString();}}>>
enjoy,
-e
Eric Shulman
TiddlyTools / ELS Design Studios