anydoc 0.1.3

Convert documents (doc, docx, odt, rtf, epub, pdf, presentations, spreadsheets, csv) to GitHub-Flavored Markdown
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Shared package layer for ZIP-based formats (DOCX, PPTX, ODF, EPUB):
//! limited archive access, namespace-aware XML, typed relationships, and
//! OPC/EPUB target resolution.

pub mod archive;
pub mod limits;
pub mod path;
pub mod relationships;
pub mod xml;

pub use archive::Package;