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
Run markdownlint
to check markdown syntax - igorshubovych/markdownlint-cli
markdownlint '**/*.md' --ignore node_modules