wp-mini-epub 0.7.1

Minimal async WP to EPUB downloader | Extremely minimal.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub(super) struct ProcessedChapter {
    pub(super) index: usize,
    pub(super) title: String,
    pub(super) file_name: String,
    pub(super) html_content: String,
    pub(super) images: Vec<ImageAsset>,
}

pub(super) struct ImageAsset {
    pub(super) epub_path: String,
    pub(super) data: Vec<u8>,
}