rwml 0.1.0

Native Rust toolkit for Microsoft Word — read, write, edit, and render legacy .doc (Word 97-2003, [MS-DOC]) and modern .docx (OOXML): one document model, package-preserving edits, field evaluation, Markdown/HTML export, PDF preview
Documentation
1
2
3
4
5
//! Exporters: pure folds over the [`crate::model::DocModel`] into Markdown (GFM)
//! and semantic HTML. They never touch the binary format.

pub(crate) mod html;
pub(crate) mod markdown;