Build Status docs.rs crates.io

docx

A Rust library for parsing and generating docx files.

Usage

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]).

Glossary

Some terms used in this crate.

Note

Toggle Properties

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); ```

License

MIT