Skip to content

📝 rumdl

rumdl is a high-performance Markdown linter and formatter written in Rust.

🛠 Installation

You can install rumdl using several common package managers.

cargo install rumdl
brew install rumdl
npm install -g rumdl
pip install rumdl

⚙ Config

rumdl can be configured using a .rumdl.toml file in the project root.

.rumdl.toml

# Enable/disable specific rules
[rules]
# Example rule settings
MD013 = false # Line length

To initialize a new configuration file:

rumdl init

📝 Usage

CLI Commands

1. Check all Markdown files in the current directory

rumdl check .

2. Automatically fix lint issues

rumdl check --fix .

3. Format Markdown files

rumdl fmt .

🔗 References