mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-09-26 00:24:14 +00:00

* #3674 implemented iterative crawler depth * #3674 added two tests for increased crawler depth * removed old comment
14 lines
328 B
HTML
14 lines
328 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Test Page 1 for Crawler</title>
|
|
</head>
|
|
<body>
|
|
<p>page 1 content</p>
|
|
<a href="index.html">link to home</a>
|
|
<a href="page2.html">link to page 2</a>
|
|
<a href="page1_subpage1.html">link to subpage 1</a>
|
|
<a href="page1_subpage2.html">link to subpage 2</a>
|
|
</body>
|
|
</html>
|