2020-01-17 16:07:44 +02:00
|
|
|
<p align="center"><img src ="https://github.com/bokuweb/docx-rs/blob/master/logo.png?raw=true" /></p>
|
|
|
|
|
|
|
|
<p align="center">
|
|
|
|
A .docx file generater with Rust/WebAssembly.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
---
|
2019-11-12 06:45:04 +02:00
|
|
|
|
|
|
|
[](https://github.com/bokuweb/docx-rs/actions)
|
2019-11-15 11:15:43 +02:00
|
|
|
|
2020-01-17 17:19:07 +02:00
|
|
|
## Example
|
|
|
|
|
|
|
|
``` rust
|
|
|
|
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(())
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-01-17 17:20:46 +02:00
|
|
|
### More examples
|
|
|
|
|
|
|
|
* [Indent](https://github.com/bokuweb/docx-rs/blob/master/docx-core/examples/indent.rs)
|
|
|
|
|
2020-01-17 17:19:07 +02:00
|
|
|
## Features
|
2019-11-15 11:15:43 +02:00
|
|
|
|
|
|
|
- [x] Paragraph
|