Please consider adding ability to export checklist as plaintext. Currently I can export checklist only as JSON: ```json [{"dateCreated":1653907613810,"id":1,"isDone":false,"title":"Foo"},{"dateCreated":1653907613810,"id":2,"isDone":true,"title":"Bar"},{"dateCreated":1653907613810,"id":3,"isDone":false,"title":"Baz"}] ``` I'd like to get human-readable text for sharing with someone on messengers etc., could be something like this: ``` ☐ Foo ☑ Bar ☐ Baz ``` or ``` ✘ Foo ✔ Bar ✘ Baz ```