//! Microsoft Assistance Markup Language (MAML) help rendering.
modrender;#[cfg(test)]modtests;modtypes;modxml_writer;pubusetypes::{CommandSpec, MamlOptions};/// Renders the MAML help XML for the provided command entries.
#[must_use]pubfnrender_help(commands:&[CommandSpec<'_>], options: MamlOptions)-> String{render::render_help(commands, options)}