This is a lightweight and fast tool to help you keep your Markdown files free of broken links.
Project description
Markdown Dead Link Checker
This handy tool helps you maintain the integrity of your Markdown files by identifying broken links. It scans your files and detects:
Here's what it does:
- Missing webpages: Links that no longer exist on the internet.
- Incorrect file links: Links that point to the wrong file in your project.
- Non-existent fragments (anchors): Links to specific sections that don't exist, e.g.
README.md#no-fragment.
Example of output for fail.md
File: tests/test_md_files/fail.md:3 • Link: https://github.com/AlexanderDokuchaev/FAILED • Error: 404: Not Found
File: tests/test_md_files/fail.md:4 • Link: https://not_exist_github.githubcom/ • Error: 500: Internal Server Error
File: tests/test_md_files/fail.md:8 • Link: /test/fail.md1 • Error: Path not found
File: tests/test_md_files/fail.md:9 • Link: fail.md1 • Error: Path not found
File: tests/test_md_files/fail.md:13 • Link: /tests/test_md_files/fail.md#fail • Error: Fragment not found
File: tests/test_md_files/fail.md:15 • Link: not_exist_dir • Error: Path not found
❌ Found 6 dead links 🙀
[!NOTE] By defaults, only error codes like 404 (Not Found), 410 (Gone), and 500 (Internal Server Error), and links that don't exist are considered "dead links". Other error codes typically indicate temporary issues with the host server or unsupported links for the HEAD request type.
How to Use It
Option 1: GitHub Actions
Add Github Action config to .github/workflow/
jobs:
md-dead-link-check:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: AlexanderDokuchaev/md-dead-link-check@v1.2.0
Option 2: Pre-Commit
Adding to your .pre-commit-config.yaml to integrate in pre-commit tool
- repo: https://github.com/AlexanderDokuchaev/md-dead-link-check
rev: "v1.2.0"
hooks:
- id: md-dead-link-check
[!NOTE] For the
pull_requestevent type, the action will only check external links for files that have been modified. To scan all links, consider using a separate action that runs periodically on target branches. This approach helps prevent pull request merges from being blocked by broken links unrelated to the files modified in the pull request.
# .github/workflows/nightly.yaml
name: nightly
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
md-dead-link-check:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: AlexanderDokuchaev/md-dead-link-check@v1.2.0
# .github/workflows/pull_request.yaml
name: pull_request
on:
pull_request:
types:
- opened
- reopened
- synchronize
jobs:
md-dead-link-check:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: AlexanderDokuchaev/md-dead-link-check@v1.2.0
Option 3: Install from pip
For direct use, install with pip and run:
pip install md-dead-link-check
md-dead-link-check
Performance
This tool utilizes asynchronous API calls and avoids downloading full web pages, enabling it to process thousands links in several seconds.
Proxy
This tool leverages your system's existing HTTP and HTTPS proxy configuration.
It achieves this by trusting the environment variables that your operating system utilizes to define proxy settings.
This functionality is enabled by the aiohttp.ClientSession(trust_env=True) option.
For further technical details, you can refer to the
aiohttp documentation.
[!WARNING] Without proxy configuration in environment, link failures may not be reported. If your environment lacks proxy configuration (variables like
http_proxyandhttps_proxy), link retrieval attempts may time out without indicating a failure. To help diagnose this issue, use the--warnargument to log all processed links.
Configuration
This tool seamlessly integrates with your project's pyproject.toml file for configuration.
To leverage a different file, invoke the --config option during execution.
- timeout: Specifies the maximum time (in seconds) to wait for web link responses. Default:
5seconds. - catch_response_codes: List of HTTP response codes to consider as failures.
If empty, all codes greater than 400 will be marked as failures. Default:
[404, 410, 500]. - exclude_links: List of links to exclude from checks. Default:
[]. - exclude_files: List of files to exclude from checks. Default:
[]. - force_get_requests_for_links: List of links for which the tool will use
GETrequests during checks. Default:[]. - check_web_links: Toggle web link checks on or off. Default:
true. - validate_ssl: Toggles whether to validate SSL certificates when checking web links. Default:
true. - throttle_groups: Number of domain groups to divide requests across for throttling. Default:
100seconds. - throttle_delay: Time to wait between requests, scaled by domain load and group size. Default:
20seconds. - throttle_max_delay: Maximum allowable delay (in seconds) for throttling a single domain. Default:
100seconds.
[!TIP] Leverage wildcard patterns (fnmatch syntax) for
exclude_links,exclude_filesandforce_get_requests_for_linksparameters.
[tool.md_dead_link_check]
timeout = 5
exclude_links = ["https://github.com/", "https://github.com/*"]
exclude_files = ["tests/test_md_files/fail.md", "tests/*"]
check_web_links = true
catch_response_codes = [404, 410, 500]
force_get_requests_for_links = []
validate_ssl = true
throttle_groups = 100
throttle_delay = 20
throttle_max_delay = 100
Rate Limiting and Request Throttling
Websites often have limits on how many requests you can make within a certain period. If these limits are exceeded, the server will return a 429 Too Many Requests status code.
Failure Handling
By default, the 429 status code is treated as a warning. You can modify this behavior and configure how the tool handles different status codes.
catch_response_codes = [404, 410, 429, 500]
Throttling Mechanism
To prevent your requests from overwhelming a website and potentially getting you blocked, this tool implements a throttling mechanism. This mechanism limits the number of requests that can be made in a given period.
You can control the following parameters to fine-tune request throttling:
throttle_groups = 40 # default: 100
throttle_delay = 30 # default: 20
throttle_max_delay = 240 # default: 100
Filter Links to Check
By filtering out non-critical links and files, you can stay within rate limits while throttling requests.
Exclude Links by Pattern
Exclude specific URLs that match patterns:
exclude_links = ["https://github.com/AlexanderDokuchaev/md-dead-link-check/pull/*"]
Exclude Specific Files
Prevent specific files (e.g., changelogs) from being checked:
exclude_files = ["CHANGELOG.md"]
Exclude Parts of Files Using Comments
Ignore sections of files using a special comment <!-- md-dead-link-check: off -->.
...
<!-- md-dead-link-check: off -->
All links will be ignored in this part of the file.
<!-- md-dead-link-check: on -->
...
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file md_dead_link_check-1.3.0.tar.gz.
File metadata
- Download URL: md_dead_link_check-1.3.0.tar.gz
- Upload date:
- Size: 19.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74745d27018e486ddd591dda699676cc057a35edeb802737104af4f12a40a38f
|
|
| MD5 |
ab614b0b7e3e81302a09d6819113c6c5
|
|
| BLAKE2b-256 |
727dfd0e9095382c2bca4713bdb4669cc603c25bde1266db47f9e2a6a43cda73
|
File details
Details for the file md_dead_link_check-1.3.0-py3-none-any.whl.
File metadata
- Download URL: md_dead_link_check-1.3.0-py3-none-any.whl
- Upload date:
- Size: 14.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0dc21867521de6ee20be670ac5a19e859a4dd525f971c1a5b56a948776db86c4
|
|
| MD5 |
9f342baa14edd8b78b4a0416e1ec7105
|
|
| BLAKE2b-256 |
c91349abd89d8e253c5feb1b921debaee4507bfeecac0fdde201cd8a51730c67
|