docx-rs 0.4.21

A .docx file writer with Rust/WebAssembly.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use docx_rs::*;

pub fn main() -> Result<(), DocxError> {
    let path = std::path::Path::new("./output/sdt.docx");
    let file = std::fs::File::create(path).unwrap();
    let p = Paragraph::new().add_run(
        Run::new()
            .add_text("Hello")
            .fonts(RunFonts::new().ascii("Arial")),
    );
    Docx::new()
        .add_structured_data_tag(StructuredDataTag::new().add_paragraph(p))
        .build()
        .pack(file)?;
    Ok(())
}