lychee/fixtures/TEST_INVALID_URLS.html
Matthias Endler 71564344de
Fix: Bring back error output for links (#1553)
With the last lychee release, we simplified the status output for links.

While this reduced the visual noise, it also accidentally caused the source of errors to not be printed anymore. This change brings back the additional error information as part of the final report output. Furthermore, it shows the error information in the progress output if verbose mode is activated.

Fixes #1487
2024-11-07 00:22:50 +01:00

27 lines
617 B
HTML
Vendored

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Invalid URLs</title>
</head>
<body>
<ul>
<li>
<a href="https://httpbin.org/status/404"
>https://httpbin.org/status/404</a
>
</li>
<li>
<a href="https://httpbin.org/status/500"
>https://httpbin.org/status/500</a
>
</li>
<li>
<a href="https://httpbin.org/status/502"
>https://httpbin.org/status/502</a
>
</li>
</ul>
</body>
</html>