Skip to main content

cargo_orthohelp/
lib.rs

1//! Library interface for `cargo-orthohelp` documentation tooling.
2//!
3//! This crate provides tools for generating documentation from `OrthoConfig`
4//! intermediate representation (IR), including localized JSON output, roff man
5//! pages, and `PowerShell` help artefacts.
6
7pub mod error;
8pub mod ir;
9pub mod powershell;
10pub mod roff;
11pub mod schema;