DOXC-PARSER
This package uses the docx-rs crate to parse docx files. It subsequently converts the parsed docx file into Markdown format. Alternatively, it can also be used to convert docx files into JSON format, where only the structure relevant for creating Markdown documents is kept.
It can be used as a library, or you can install it and use it from the command line.
CLI application
<FILE> The
# Example
Library
use MarkdownDocument;
let markdown_doc = from_file;
let markdown = markdown_doc.to_markdown;
let json = markdown_doc.to_json;
println!;
println!;
Development commands