mdx_rust/lib.rs
1//! Public documentation facade for the `mdx-rust` CLI crate.
2//!
3//! Most reusable APIs live in [`mdx_rust_core`] and [`mdx_rust_analysis`].
4//! This crate primarily ships the `mdx-rust` binary, but it also exposes those
5//! lower-level crates so docs.rs has a stable library target to document.
6//!
7//! Install the CLI with:
8//!
9//! ```text
10//! cargo install mdx-rust
11//! ```
12
13pub use mdx_rust_analysis as analysis;
14pub use mdx_rust_core as core;