Metadata-Version: 2.1
Name: markdown-link-checker
Version: 0.1.0
Summary: A command-line interface that, given a markdown file, verifies all the links work.
Home-page: https://github.com/tecladocode/markdown-link-checker
Author: Jose Salvatierra
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# Markdown Link Checker

A command-line utility written in Python that checks validity of links in a markdown file.

## Install

```
pip install markdown-link-checker
```

## Usage

```
link_checker "markdown-file.md"
```

## Output

Invalid links in document

| link             | reason                                                                                                                                                                                                                                                                    |
| :--------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| http://example.c | HTTPConnectionPool(host='example.c', port=80): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection. HTTPConnection object at 0x1066924d0>: Failed to establish a new connection: [Errno ] nodename nor servname provided, or not known')) |
| htp://google.com | No connection adapters were found for 'htp://google.com'                                                                                                                                                                                                                  |
| http//google.com | Invalid URL 'http//google.com': No schema supplied. Perhaps you meant http://http//google.com?                                                                                                                                                                            |

Valid links in document

| text  | link               |
| ----- | ------------------ |
| here  | http://example.com |
| Udemy | https://udemy.com  |



