mirror of
https://github.com/Hopiu/lychee.git
synced 2026-05-20 19:41:53 +00:00
We must also check the fragment before it is percent-decoded as required by the HTML standard. Fixes https://github.com/lycheeverse/lychee/issues/1467
27 lines
839 B
HTML
Vendored
27 lines
839 B
HTML
Vendored
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>For Testing Fragments</title>
|
|
</head>
|
|
<body>
|
|
<section id="in-the-beginning" style="height: 100vh;">
|
|
<p id="Upper-ÄÖö">
|
|
<div id="tangent%3A-kustomize"></div>
|
|
To start
|
|
<a href="file1.md#fragment-1">
|
|
let's run away.
|
|
</a>
|
|
</p>
|
|
</section>
|
|
<section>
|
|
<p id="a-word">Word</p>
|
|
<a href="#in-the-beginning">back we go</a><br>
|
|
<a href="#in-THE-begiNNing">back we go upper does not work</a><br>
|
|
<a href="#tangent%3A-kustomize">id with percent encoding</a><br>
|
|
<a href="#Upper-ÄÖö">back to Upper-ÄÖö</a><br>
|
|
<a href="#Upper-%C3%84%C3%96%C3%B6">back to öüä encoded</a><br>
|
|
<a href="#in-the-end">doesn't exist</a><br>
|
|
</section>
|
|
</body>
|
|
</html>
|