How to load external data when TiddlyWiki startup?
like this:
The data.json file is a JSON format exported by TiddlyWiki.
It is updated automatically every day.
Currently, I need to import the data.json file into TiddlyWiki manually every day.
I would like to request a feature that would allow me to load the external data directly when TiddlyWiki starts.
I found the plugins:
https://saqimtiaz.github.io/tw5-plugins-sandbox/#ExternalContent
and use the test code:
\procedure loadMyWiki()
\import [[$:/plugins/sq/ExternalContent/loadWikiActions]]
<$transclude
$variable="loadWikiActions"
wikiURL="https://simon.tiddlyhost.com/tiddlers.json"
contentFilter="[!is[system]]"
deseralizer="text/html"
/>
\end
<$button actions=<<loadMyWiki>> > load content </$button>
but the plugin is not working
Is there any way to load external data?