Lucius Hu
Lucius Hu
yes `--cookie-jar` is a good name. First it mirrors curl. second, various language has http.cookiejar, e.g. python, ruby, perl, etc.
I don't think worker thread should have access to cache at all. A supervisor thread should push URLs to workers. It'll also be easier to implement rate limit I think.
@mre ripgrep has an algorithm to detect whether a file is binary or text. lychee should use similar algorithm and support all text by default.
@mre I agree that we should skip images, videos, and audios. That is to say, we should skip all binary files plus certain categories. In terminology of XDG shared-mimeinfo, we...
currently we relies on extension to determine the file format, and non supported format are treated as plaintext where we simply grab urls. this process is VERY inefficient due to...
Let's just use a table, either gfm table or html table, with one column for the status and another column for the URL.
In my opinion, emojis are just eye candy and it's not useful in CI. Making URLs appear as hyperlinks is also not useful... it only makes the output unnecessarily long.
currently URL is formated as ```txt [http://example.com](http://example.com) ``` It takes twice as much as the length it needs. Just format it as-is is enough. ```txt http://example.com ```
@polarathene No, hyperlink is unnecessary.
lychee should first distinguish strict and fuzzy link detections. strict means a string is a link if and only if it's rendered as a hyperlink in a HTML file. This...