Matthias Endler
Matthias Endler
Anchor tags are supported by https://github.com/killercup/link-checker and the implementation is done with a `HashSet` of anchor links per page. https://github.com/killercup/link-checker/blob/master/src/links.rs. Something to look into if we get around to adding...
What I don't understand is why the progress line sometimes overflows on large URLs. This is only happening since indicatif 0.17.0. Unless it's an obvious mistake on my end (which...
Do you mean like this? ```toml [dependencies.indicatif] version = "0.17.0" default-features = false features = [] ``` Just tried that, but the result is still the same.
Yeah, excluding it by default is probably the way to go. At least I lean towards that at the moment.
Hi, we decided to not check absolute links by default, because it could generate a lot of false-positives when assuming the current directory as a root. For instance, many static...
Just revisited this issue and your suggestions make sense. We can use the examples for unit tests. I agree that there needs to be a separation between `--base` and `--root`...
Your examples are for `lychee --root ./public`, right? ``` BASE_URL=https://example.com/some/path ./my-generator --out=./public ``` You mentioned two examples in the other issue that we can use as tests: ``` https://example.com/some/path/images/logo.svg =>...
Probably it should be `--dump-inputs`.
The idea was to have a command that would allow users to quickly verify that all expected inputs are covered. It can help with troubleshooting. In light of that, I'd...
Sorta prefer `--dump-inputs` because we also have `--dump` which serves a similar purpose and it would show up below each other in the help output.