This tool looks for external links in markdown files.
Currently this identifies external URLs that are linked to in a markdown file, ignoring any relative URLs.
This tool requires Python 3.6 or later. To install with pip:
pip install markdown-external-link-finder
Run python -m markdown_external_link_finder
in the directory you want to search.
This outputs a list of URLs, one per line.
extract_markdown_links
takes a list of filenames and returns a list of URLs.
Example usage:
from markdown_external_link_finder.extract import extract_markdown_links
for url in extract_markdown_links(['/path/to/file.md']):
print(url)
This project follows Semantic Versioning.
- Update the changelog (TODO: add the changelog)
- Update the version in
setup.py
- Tag the repo with
vX.Y.Z
where X.Y.Z is the version - CircleCI will automatically build the package and release to PyPI
MIT