I'd like to create a desktop version, and store all tiddlers on fs or SoLiD POD, instead of a HTML file, so I can do search from outside of tiddlywiki (for example, spotlight or Alfred).
I need something like this to create a fs based wiki:
import tiddlywiki from 'tiddlywiki';
tiddlywiki.init(`~/Document/tiddlywiki/${wikiname}`);
tiddlywiki.start({ location: `~/Document/tiddlywiki/${wikiname}`, plugins: [] });
or just start a blank wiki, and sync all tiddlers from BaaS likes SoLiD POD later:
import tiddlywiki from 'tiddlywiki';
import solidSyncAdaptor from 'tiddlywiki-solid-sync-adaptor';
tiddlywiki.start({ plugins: [solidSyncAdaptor] });
Can I do this?