#[rustfmt::skip]
pub(super) const EXAMPLES: &[HelpExample] = &[
("Read Git's complete manual in the interactive reader", &["roff", "tui"], &[
("mant git", false),
]),
("Extract a tar option entry as portable Markdown", &["roff"], &[
("mant tar --explain=", false),
("--exclude", true),
(" --format markdown", false),
]),
("Search Git and its linked manuals for a topic, limited to two hops", &["roff"], &[
("mant git --search ", false),
("worktree", true),
(" --follow-links --max-depth 2 --max-documents 32 --context 1", false),
]),
("Discover up to 20 native manuals matching a name as compact JSON", &[], &[
("mant --find ", false),
("'^git'", true),
(" --regex --kind manual --limit 20 --format json --compact", false),
]),
("Validate a local Markdown manual's semantic outline and diagnostics", &[], &[
("mant --input ", false),
("./tool.md", true),
(" --outline --outline-entries all --format json --compact", false),
]),
("Serve local documentation to an MCP client over standard input and output", &["mcp"], &[
("mant --mcp", false),
]),
];