rumdl 0.1.51

A fast Markdown linter written in Rust (Ru(st) MarkDown Linter)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Command handlers for the rumdl CLI.
//!
//! Each subcommand has its own module with a public handler function
//! that `main()` dispatches to.

pub mod check;
pub mod clean;
pub mod completions;
pub mod config;
pub mod explain;
pub mod import;
pub mod init;
pub mod rule;
pub mod schema;
pub mod server;
pub mod version;
pub mod vscode;