docx-rs 0.4.20

A .docx file writer with Rust/WebAssembly.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod documents;
#[allow(hidden_glob_reexports)] // should rename?
mod errors;
mod escape;
mod macros;
mod reader;
mod types;
pub mod xml;
mod xml_builder;
mod xml_json;
mod zipper;

pub use documents::*;
pub use errors::*;
pub use reader::*;
pub use types::*;
pub use xml_json::*;