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
//! File processing and linting logic.
//!
//! This module handles file discovery, core linting/fixing, and embedded markdown processing.

mod discovery;
mod doc_comments;
mod embedded;
mod processing;

pub use discovery::*;
pub use processing::*;

#[cfg(test)]
mod tests;