docx-rust 0.1.11

A Rust library for parsing and generating docx files.
Documentation
use docx_rust::{
    document::{Paragraph, Table, TableCell, TableRow},
    formatting::{TableCellProperty, TableProperty, TableRowProperty},
    Docx, DocxResult,
};

fn main() -> DocxResult<()> {
    // Create an empty document
    let mut docx = Docx::default();

    // Create a table and populate it with data
    let tbl = Table::default()
        .property(TableProperty::default())
        .push_row(
            TableRow::default()
                .property(TableRowProperty::default())
                .push_cell(Paragraph::default())
                .push_cell(
                    TableCell::paragraph(Paragraph::default())
                        .property(TableCellProperty::default()),
                ),
        );

    // Add the table to the document
    docx.document.push(tbl);

    // Persist the document to a file
    docx.write_file("table.docx")?;

    Ok(())
}