Skip to content

Rumdl Container Image

Containerized build of the Rust-based rumdl Markdown linter for local use and CI pipelines. This container image powers the GitLab CI Component rumdl.

Features

Run Markdown Linter rumdl in a Container.

Usage

Pull the image

podman pull registry.gitlab.com/niclas-zone/ctr/rumdl:latest

Lint Markdown locally

podman run --rm \
  -v $(pwd):/workspace \
  -w /workspace \
  registry.gitlab.com/niclas-zone/ctr/rumdl:latest \
  rumdl --check .

GitLab CI snippet

lint:
  image: registry.gitlab.com/niclas-zone/ctr/rumdl:latest
  script:
    - rumdl --check .

Author

Niclas Heinz

Contributing

Contributions are welcome! Please open an issue or submit a merge request if you have suggestions or improvements.

License

This project is licensed under the MIT License. See LICENSE for full details.