microsoft / linkcheckermd

A VSCode extension that check links in Markdown to ensure they are valid.
MIT License
16 stars 20 forks source link

bad internal links are not found #55

Open gmccullo opened 2 years ago

gmccullo commented 2 years ago

Markdown test code: none of these files or headers exist:

- [bad link test 1](#badlink)
- [bad link test 2](nofile.md#badlink)
- [bad link test 3](nofile.md)

Expected output:

Error: #badlink on line 144.
Error: nofile.md#badlink on line 145 does not exist.
Error: nofile.md on line 146 does not exist.

Actual output:

Info: #badlink on line 144.
Error: nofile.md#badlink on line 145 does not exist.
Error: nofile.md on line 146 does not exist.