mdsf 0.12.1

Format, and lint, markdown code snippets using your favorite tools
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod commands;

fn main() {
    if let Err(error) = commands::run_command() {
        mdsf::error::exit_with_error(&error)
    }

    if mdsf::error::HAS_ERROR.load(core::sync::atomic::Ordering::Relaxed) {
        std::process::exit(1)
    }
}