We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Regarding #40 I am currently performing some regression tests and I came across the following (just FYI, I'm already taking care of it):
URL with 404:
$ markdown-link-check https://github.com/tcort/markdown-link-check/blob/master/READMEeeeeeeee.md FILE: https://github.com/tcort/markdown-link-check/blob/master/READMEeeeeeeee.md No hyperlinks found!
URL with invalid domain:
$ markdown-link-check https://gitaaaaaaaaaaaaaaaahub.com/tcort/markdown-link-check/blob/master/READMEeeeeeeee.md events.js:183 throw er; // Unhandled 'error' event ^ Error: getaddrinfo ENOTFOUND gitaaaaaaaaaaaaaaaahub.com gitaaaaaaaaaaaaaaaahub.com:443 at errnoException (dns.js:50:10) at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:92:26)
Solution for URL with 404:
$ node markdown-link-check https://github.com/tcort/markdown-link-check/blob/master/READMEeeeeeeee.md ERROR: Received unsuccessful status code of 404!
Solution for URL with invalid domain:
$ node markdown-link-check https://gitaaaaaaaaaaaaaaaahub.com/tcort/markdown-link-check/blob/master/READMEeeeeeeee.md ERROR: Something went wrong! Error: getaddrinfo ENOTFOUND gitaaaaaaaaaaaaaaaahub.com gitaaaaaaaaaaaaaaaahub.com:443 at errnoException (dns.js:50:10) at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:92:26)
The text was updated successfully, but these errors were encountered:
This issue is also true for invalid filenames:
$ markdown-link-check READMEe.md -p events.js:183 throw er; // Unhandled 'error' event ^ Error: ENOENT: no such file or directory, open 'READMEe.md'
Sorry, something went wrong.
and directories:
$ node markdown-link-check test/ events.js:183 throw er; // Unhandled 'error' event ^ Error: EISDIR: illegal operation on a directory, read
Successfully merging a pull request may close this issue.
Regarding #40 I am currently performing some regression tests and I came across the following (just FYI, I'm already taking care of it):
URL with 404:
URL with invalid domain:
Solution for URL with 404:
Solution for URL with invalid domain:
The text was updated successfully, but these errors were encountered: