markdown-link-check icon indicating copy to clipboard operation
markdown-link-check copied to clipboard

How to check for broken local file links?

Open uvsmtid opened this issue 5 months ago • 4 comments

I have this configuration:

.pre-commit-config.yaml


repos:
    -   repo: https://github.com/tcort/markdown-link-check
        rev: v3.13.7
        hooks:

        -   id: markdown-link-check
            args:
            -   "-q"
            -   "-c"
            -   ".markdownlinkcheck.json"

.markdownlinkcheck.json

{
  "checkRelative": true
}

But local broken links are still not detected:

[some_file.md]: this/path/does/not/exists/some_file.md

uvsmtid avatar May 24 '25 14:05 uvsmtid