cargo-orthohelp 0.8.0

OrthoConfig documentation tooling for IR generation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Microsoft Assistance Markup Language (MAML) help rendering.

mod render;
#[cfg(test)]
mod tests;
mod types;
mod xml_writer;

pub use types::{CommandSpec, MamlOptions};

/// Renders the MAML help XML for the provided command entries.
#[must_use]
pub fn render_help(commands: &[CommandSpec<'_>], options: MamlOptions) -> String {
    render::render_help(commands, options)
}