lambrospetrou / tiddlyflare

Hosting platform for TIddlyWikis.
https://tiddly.lambros.dev
MIT License
4 stars 1 forks source link

Tiddlywiki saving examples #1

Open lambrospetrou opened 5 days ago

lambrospetrou commented 5 days ago

TiddlyWiki 5 offers several ways to provide "saving" functionality. The following two are built-in to TiddlyWiki 5:

Others

References

lambrospetrou commented 5 days ago

With the CustomSaver and the PutSaver we can pretty much implement anything. Using the PutSaver as fallback, and the CustomSaver in JS in case I need to do something more flexible in those wikis with my plugin is enough.

lambrospetrou commented 5 days ago

TiddlyWiki also has SyncAdaptor modules that do fine-grained saving/loading/deleting of Tiddlers.

This will be a 2nd iteration (after PUT) of saving the data remotely in a fine-grained way.

lambrospetrou commented 3 days ago

The PUT Saver is now complete, saving works and we retain the last 10 versions (for now). I will see later if we can add per tiddler saving/loading as well.