epub-parser 0.3.4

A Rust library for extracting metadata, table of contents, text, cover, and images from EPUB files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Utility modules for EPUB parsing.
//!
//! This module provides helper utilities for parsing EPUB files:
//! - `ZipHandler`: For reading EPUB ZIP archives
//! - `XmlParser`: For extracting text from XML elements

pub mod xml;
pub mod zip;

pub use xml::{XmlParser, preprocess_html_entities};
pub use zip::ZipHandler;