summary_rs/
lib.rs

1mod parse;
2mod types;
3mod reader;
4mod modify_docx;
5
6pub use types::*;
7pub use reader::read_docx_content;
8pub use parse::{parse_docx_table, parse_docx_text, match_project_no};
9pub use modify_docx::modify_docx;