markdown-link-check
markdown-link-check copied to clipboard
checks all of the hyperlinks in a markdown text to determine if they are alive or dead
Bumps [eslint](https://github.com/eslint/eslint) from 9.3.0 to 9.9.1. Release notes Sourced from eslint's releases. v9.9.1 Bug Fixes 9bde90c fix: add logic to handle fixTypes in lintText() (#18736) (Amaresh S M) Documentation 4840930...
Given the following two files in a git repo: ```bash $ cat .pre-commit-config.yaml repos: - repo: https://github.com/tcort/markdown-link-check rev: v3.13.7 hooks: - id: markdown-link-check ``` ```bash $ cat README.md [bad link](does-not-exist.com)...
I have this configuration: **`.pre-commit-config.yaml`** ```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`** ```json { "checkRelative": true }...
Running in the pre-commit hook with this config... ``` repos: - repo: https://github.com/tcort/markdown-link-check rev: v3.12.2 hooks: - id: markdown-link-check args: - --quiet - --config - .markdown-link-check.json ``` ...we get this...
Issue observed with v3.13.7 `bad.md`: ``` # Bad Document * [bad link](https://fake.url) ``` Repro: ``` $ markdown-link-check --version 3.13.7 $ markdown-link-check bad.md FILE: bad.md [✖] https://fake.url 1 links checked. ERROR:...
The issue happens when the heading follows fenced code block where the closing back-ticks are indented more than the opening of the code block and the next section contains a...
@tcort @smainil @BaseMax Options include: * Fork it and maintain a tcort action to go with the checker * Ask @gaurav-nelson if they are happy for us to maintain it...
Add a new option to the CLI tool `--include-mdx`. When running the CLI, check .mdx files if --include-mdx is set to true. @tcort I don't know if you'd be interested...
The CLI used to return exit code 1 when dead links found until version 3.12.2, but it changed to exit code 0 in [this commit](https://github.com/tcort/markdown-link-check/commit/d8f522b10d74b55e93a4677b9f1b9f0f314e94d6) (This seems unintentional as the...
The intention is to help identify areas of the code not covered by tests so that we can start to remediate that and increase confidence in releases. This is the...