warcat 0.3.0

Command-line tool and library for handling Web ARChive (WARC) files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub fn dump_help() -> anyhow::Result<()> {
    let config = clap_markdown::MarkdownOptions::new()
        .show_footer(false)
        .show_table_of_contents(false)
        .title("{title}".to_string());

    println!(
        "{}",
        clap_markdown::help_markdown_custom::<super::arg::Args>(&config)
    );

    Ok(())
}