In case someone is still interested in realising the automatic update of last modified date in the current note like the post here, here is my solution using the Dateview
plugin.
- Install
Dateview
plugin inCommunity plugins
. Enable it. - Enable the
JavaScripts Queries
as well as theInline JavaScripts Queries
in the plugin’s settings. - Now you just need to put this line wherever you want to have the modified date displayed:
`$= dv.current().file.mtime`
For demonstration, here is how I use this trick:
> [!info]- Metadata
> - Created:: `$= dv.current().file.ctime`
> - Updated:: `$= dv.current().file.mtime`
Hope it helps!