Forked from: https://github.com/bokuweb/docx-rs
|
||
---|---|---|
.github | ||
.vscode | ||
docs | ||
docx-core | ||
docx-wasm | ||
fixtures | ||
output | ||
vrt | ||
.gitignore | ||
Cargo.lock | ||
Cargo.toml | ||
README.md | ||
logo.png | ||
makefile |
README.md
A .docx file generater with Rust/WebAssembly.
Example
use docx_core::*;
pub fn hello() -> Result<(), DocxError> {
let path = std::path::Path::new("./tests/output/hello.docx");
let file = std::fs::File::create(&path).unwrap();
Docx::new()
.add_paragraph(Paragraph::new().add_run(Run::new().add_text("Hello")))
.build()
.pack(file)?;
Ok(())
}
Features
- Paragraph