mdmf 0.2.0

Formats markdown text files into standard manuscript format for submissions. Works for short stories and multi-part novels.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod args;
pub mod config;
pub mod docx_builder;

use clap::Parser;
use args::Args;

fn main() {
    let args = Args::parse();
    
    if let Err(e) = docx_builder::compile_manuscript(&args.config_file, &args.output_dir, args.blind) {
        eprintln!("--> FATAL ERROR: {}", e);
        std::process::exit(1);
    }
}