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
The local file check doesn't really work well for us. Please check the following suggestions below:
First the following line is superflous and actually has the expanduser at the wrong place breaking the passing of ~/... paths:
expanduser
~/...
linkchecker-markdown/src/linkcheckmd/base.py
Line 51 in bfbe3ad
Then our markdownfiles have relative links like [Request](req_resources.md) which are completely ignored (reported as "not found") by the linkchecker.
[Request](req_resources.md)
The check at
Lines 63 to 64 in bfbe3ad
Lines 68 to 69 in bfbe3ad
Why doesn't
Lines 71 to 75 in bfbe3ad
(path / stem).is_file()
And finally: The list is only printed, but does not affect the return code. See
Line 32 in bfbe3ad
The text was updated successfully, but these errors were encountered:
Relative links being ignored is a dealbreaker for me.
Sorry, something went wrong.
No branches or pull requests
The local file check doesn't really work well for us. Please check the following suggestions below:
First the following line is superflous and actually has the
expanduser
at the wrong place breaking the passing of~/...
paths:linkchecker-markdown/src/linkcheckmd/base.py
Line 51 in bfbe3ad
Then our markdownfiles have relative links like
[Request](req_resources.md)
which are completely ignored (reported as "not found") by the linkchecker.The check at
linkchecker-markdown/src/linkcheckmd/base.py
Lines 63 to 64 in bfbe3ad
linkchecker-markdown/src/linkcheckmd/base.py
Lines 68 to 69 in bfbe3ad
However I don't understand its purpose: Why disallow links with slashes and dots, e.g. the one above?
Why doesn't
linkchecker-markdown/src/linkcheckmd/base.py
Lines 71 to 75 in bfbe3ad
(path / stem).is_file()
?And finally: The list is only printed, but does not affect the return code. See
linkchecker-markdown/src/linkcheckmd/base.py
Line 32 in bfbe3ad
The text was updated successfully, but these errors were encountered: