I am working on a blog that uses ~5000 nodes, mostly long texts (imported from blogger) that are being edited and updated using the builtin ckeditor5. The blog author has requested that I implement autosave for the node edit form.
I know of an autosave feature from the Ckeditor website, and when i search the backdrop core ckeditor5 module, i find the string:
exports.Autosave = lv;
I don't know if it means that autosave is actually included, activated, usable, or not. I don't see any reference to it in the UI. So my question is, how do I activate autosave and use it in my site?
Thanks for your prompt reply.
I tried the Autosave module that you mentioned, but it saves to the database, and the behavior I am looking for is to save to localStorage, in other words, client side. To my thinking, that's a better option because if the internet goes down you still save the content, and it can be restored if needed.
(Not to get long-winded about this, but my content author is a tour guide, and while traveling recently, the internet went down in his hotel while he was editing a lengthy post. The hotel internet "helpfully" forced his browser to load a new page informing him of the fact, and when he returned to the node edit form all of his changes were lost.)