Crate joplin_reader[−][src]
joplin-reader
Read-only library for joplin data folders.
Usage
Decrypt a file loaded into a string:
use joplin_reader::notebook::JoplinNotebook; let joplin_folder = "./Joplin"; // I usually take a ';'-separated list of id,password pairs. let passwords = "3336eb7a2472d9ae4a690a978fa8a46f,plaintext_password".split(";"); let notebooks = JoplinNotebook::new(joplin_folder, passwords)?; println!("{:?}", notebooks.read_note("9a20a9e4d336de70cb6d22a58a3e673c"));
Modules
key | |
note | |
notebook |
Enums
JoplinReaderError |