inkhaven 1.4.5

Inkhaven — TUI literary work editor for Typst books
1
2
3
4
5
6
7
8
9
10
11
12
//! EPUB **import** (the inverse of `crate::epub` export).
//!
//! Reads a `.epub` and materialises it as an inkhaven Book → Chapters →
//! Paragraphs, mirroring `crate::scrivener::import`. Built on the
//! in-tree `zip` + `quick-xml` (no new deps). Untrusted input is parsed
//! defensively — malformed bytes error rather than panic.

pub mod import;
pub mod package;
pub mod xhtml;

pub use import::{import_epub, EpubImportOpts};