Useful Markdown CLI Commands
ahandsel

ahandsel @ahandsel

About: Developer Advocate and UX writer working on the product and API documentation. Based in Tokyo 🗼. Either writing or hiking 🥾

Location:
Tokyo
Joined:
Oct 21, 2019

Useful Markdown CLI Commands

Publish Date: Sep 1 '23
1 0

Markdown Linters

Run markdown-link-check to check broken links - tcort/markdown-link-check

find . -name \*.md -not -path "./node_modules/*" -print0 | xargs -0 -n1 markdown-link-check -p -q
Enter fullscreen mode Exit fullscreen mode

Run markdownlint to check markdown syntax - igorshubovych/markdownlint-cli

markdownlint '**/*.md' --ignore node_modules
Enter fullscreen mode Exit fullscreen mode

Comments 0 total

    Add comment