mirror of
https://github.com/Hopiu/lychee.git
synced 2026-05-09 06:14:44 +00:00
* Added html5gum based fragment extractor * Markdown fragment extractor now extracts fragments from inline html * Added fragment checks for html file * Added inline html and html document to fragment checks test * Improved some comments * Improved documentation of markdown's fragment extractor.
22 lines
468 B
HTML
Vendored
22 lines
468 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">
|
|
<p>
|
|
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>
|
|
<a href="#in-the-end">doesn't exist</a>
|
|
</section>
|
|
</body>
|
|
</html>
|