Matthias Endler
Matthias Endler
I see. That's a problem indeed. However we could track files that got converted in the process and print the original filenames instead. (We don't support printing the location of...
You're right. That won't work. I would really love to support AsciiDoc, but there are no Rust parsers that I'm aware of. Link checking would be very rudimentary at best...
Honestly I'm scared of the edge-cases. A regex-based solution might produce a lot of false-positives and these are worse than false-negatives in my experience: It's tedious for a user to...
Let's keep it open for the time being because I'd still love to support it. Maybe there will be an AsciiDoc crate in the future.
All good. Thanks for the feedback!
#### Update `--exclude-path` exists now. It allows excluding files and directories from being checked. Usage example based on the original request above: ``` lychee --exclude-path node_modules .git -- . ```...
That's what we do already. The cache handling is outside of the workers. It currently is located in the binary code [here](https://github.com/lycheeverse/lychee/blob/e670c0a5cb8b80ac07b3565630b4c130647cb96b/lychee-bin/src/commands/check.rs#L115-L148), but I'm considering to move it to the...
https://github.com/pfernie/reqwest_cookie_store is an implementation of a cookie store for reqwest.
At long last we got proper documentation for repeating options in the [lychee docs here](https://lychee.cli.rs/#/usage/cli?id=repeating-options). 🥳 There is a button to edit the source in case we need to make...
Fixed in `master` now. `data` URLs will only be printed in verbose mode. Closing. 👌