A Rust library for parsing and generating docx files.
toml
docx = "0.1.3"
Using methods [from_file
] and [write_file
] for reading from and writing to file directly.
```rust use docx::Docx; use docx::document::Para;
// reading docx from file let mut docx = Docx::from_file("demo.docx").unwrap();
// do whatever you want...
// for example, appending text let mut para = Para::default(); para.text("Lorem Ipsum"); docx.insert_para(para);
// writing back to the original file docx.write_file("demo.docx").unwrap(); ```
Alternatively, you can use [parse
] (accepts [Read
] + [Seek
]) and [generate
] (accepts [Write
] + [Seek
]).
Some terms used in this crate.
Some fields in this crate (e.g. [bold
] and [italics
]) are declared as Option<bool>
instead of bool
.
This indicates that they are toggle properties which can be inherited (None
) or disabled/enabled explicitly (Some
).
For example, you can disable bold of a run within a paragraph specified bold by setting bold
to Some(false)
:
```rust use docx::Docx; use docx::document::{Para, Run};
let mut docx = Docx::default();
docx .create_style() .name("Normal") .char() .bold(true) .italics(true);
let mut para = Para::default(); para.prop().name("Normal");
// inherited from its parent para.text("I'm bold and italics.").text_break();
let mut run = Run::text("But I'm not."); run.prop().bold(false).italics(false); para.run(run);
docx.insert_para(para); ```
MIT