Skip to content

MDLinter (rumdl)

Type-safe wrapper for rumdl, the fast Markdown linter.

rumdl is a Rust-based Markdown linter that enforces consistent formatting and catches common issues.

Subclassing Example

# myapp/rig/tools/mdlinter.py
from pyrig.rig.tools.mdlinter import MDLinter as BaseMDL
from pyrig.src.processes import Args

class MDLinter(BaseMDL):
    def check_args(self, *args: str) -> Args:
        return super().check_args("--verbose", *args)