-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
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
Allow ignoring specific broken links #133
Comments
These are the current broken links for the rust-lang/rust repo (after running a full
Of those, these seem like bugs in deadlinks itself:
and this I'm not sure about:
/home/joshua/rustc3/build/x86_64-unknown-linux-gnu/doc/std/primitive.slice.html does exist so maybe someone used too many |
After fixing bugs in both deadlinks and rust-lang/rust, these are the remaining broken links:
The link to slice looks related to #37, maybe? See also rust-lang/rust#80175. |
For deadlinks#133 This still needs tests.
This is needed to replace
src/tools/linkchecker
in the rust-lang repo (#105). These are the currently ignored links: https://github.com/rust-lang/rust/blob/e4297ba39ce07a0b0000841b50154ea53783a024/src/tools/linkchecker/main.rs#L31-L91So we need a way to ignore:
[<code></code>]
)I'm imagining a setup like this in
deadlinks.toml
:The reason I don't want to put it in Cargo.toml is that allows it to be used with
deadlinks
and not justcargo-deadlinks
.As an extension, this could allow ignoring completely missing files, but that wouldn't be necessary for replacing linkchecker. I think it's a useful feature separate from rust-lang/rust, though.
The text was updated successfully, but these errors were encountered: