mirror of
https://github.com/vacp2p/mdcheckr.git
synced 2026-01-10 07:28:10 -05:00
b06b4b712d2e445d4a396610b330642e38268f8f
mdcheckr 
Practical CI testing for markdown files.
Dependencies
Requirements:
- curl
- xmllint
- pandoc
Installation
curl https://raw.githubusercontent.com/mike42/mdcheckr/master/mdcheckr -o mdcheckr
chmod +x mdcheckr
sudo cp mdcheckr /usr/local/bin
Usage
Check a single markdown file:
mdcheckr README.md
Check all the markdown files in the current directory:
find . -name '*.md' -print0 | xargs -0 mdcheckr
Check all the markdown files in your Git repository:
git ls-files | grep '\.md$' | tr '\n' '\0' | xargs -0 mdcheckr
Description
Languages
Shell
92.9%
Roff
6.3%
Makefile
0.8%