snapper-fmt 0.7.7

Semantic line break formatter for Org, LaTeX, Markdown, and plaintext
Documentation
1
2
3
4
5
6
7
8
use clap::CommandFactory;
use snapper_fmt::cli::Cli;

fn main() {
    let cmd = Cli::command();
    let markdown = clap_markdown::help_markdown_command(&cmd);
    print!("{markdown}");
}