markdown-it-rs 0.6.2

Rust port of popular markdown-it.js library. Forked from markdown-it-rust/markdown-it
Documentation
use std::io::{Read, Write};

use clap::{Arg, ArgAction, Command};
use markdown_it::parser::inline::{Text, TextSpecial};

#[cfg(not(tarpaulin_include))]
fn main() {
    let cli = Command::new("markdown-it")
        .version(env!("CARGO_PKG_VERSION"))
        .disable_version_flag(true)
        .arg(
            Arg::new("version")
                .short('v')
                .long("version")
                .help("Show version")
                .action(ArgAction::Version),
        )
        .arg(
            Arg::new("output")
                .short('o')
                .long("output")
                .help("File to write")
                .default_value("-"),
        )
        .arg(
            Arg::new("sourcepos")
                .long("sourcepos")
                .help("Include source mappings in HTML attributes")
                .action(ArgAction::SetTrue),
        )
        .arg(
            Arg::new("no-html")
                .long("no-html")
                .help("Disable embedded HTML")
                .action(ArgAction::SetTrue),
        )
        .arg(
            Arg::new("typographer")
                .short('t')
                .long("typographer")
                .help("Enable smartquotes and other typographic replacements")
                .action(ArgAction::SetTrue),
        )
        .arg(
            Arg::new("tree")
                .long("tree")
                .help("Print syntax tree for debugging")
                .action(ArgAction::SetTrue),
        )
        .arg(Arg::new("file").help("File to read").default_value("-"));

    #[cfg(feature = "linkify")]
    let cli = cli.arg(
        Arg::new("linkify")
            .short('l')
            .long("linkify")
            .help("Autolink text")
            .action(ArgAction::SetTrue),
    );

    let matches = cli.get_matches();
    let input = matches
        .get_one::<String>("file")
        .expect("file has a default");
    let output = matches
        .get_one::<String>("output")
        .expect("output has a default");
    let no_html = matches.get_flag("no-html");
    #[cfg(feature = "linkify")]
    let linkify = matches.get_flag("linkify");
    let typographer = matches.get_flag("typographer");
    let sourcepos = matches.get_flag("sourcepos");
    let show_tree = matches.get_flag("tree");

    let vec = if input == "-" {
        let mut vec = Vec::new();
        std::io::stdin().read_to_end(&mut vec).unwrap();
        vec
    } else {
        std::fs::read(input).unwrap()
    };

    let source = String::from_utf8_lossy(&vec);
    let md = &mut markdown_it::MarkdownIt::new();
    markdown_it::plugins::cmark::add(md);
    #[cfg(feature = "syntect")]
    markdown_it::plugins::extra::syntect::add(md);
    markdown_it::plugins::extra::tables::add(md);
    markdown_it::plugins::extra::strikethrough::add(md);
    markdown_it::plugins::extra::beautify_links::add(md);
    if !no_html {
        markdown_it::plugins::html::add(md);
    }
    if sourcepos {
        markdown_it::plugins::sourcepos::add(md);
    }
    #[cfg(feature = "linkify")]
    if linkify {
        markdown_it::plugins::extra::linkify::add(md);
    }
    if typographer {
        markdown_it::plugins::extra::smartquotes::add(md);
        markdown_it::plugins::extra::typographer::add(md);
    }

    let ast = md.parse(&source);

    if show_tree {
        ast.walk(|node, depth| {
            print!("{}", "    ".repeat(depth as usize));
            let name = &node.name()[node.name().rfind("::").map(|x| x + 2).unwrap_or_default()..];
            if let Some(data) = node.cast::<Text>() {
                println!("{name}: {:?}", data.content);
            } else if let Some(data) = node.cast::<TextSpecial>() {
                println!("{name}: {:?}", data.content);
            } else {
                println!("{name}");
            }
        });
        return;
    }

    let result = ast.render();

    if output == "-" {
        std::io::stdout().write_all(result.as_bytes()).unwrap();
    } else {
        std::fs::write(output, &result).unwrap();
    }
}