web-crawler/internal/util/testdata/GetURLFromHTML/blog.boot.dev.html
Dan Anglin 4519de764e
All checks were successful
Tests / test (pull_request) Successful in 13s
feat: add the web crawler
Add the source code for the web crawler. The web crawler is a simple Go
CLI application that traverses through a website and generates a report
of all the internal links found in the site.
2024-08-27 15:42:26 +01:00

10 lines
159 B
HTML

<html>
<body>
<a href="/path/one">
<span>Boot.dev</span>
</a>
<a href="https://other.com/path/one">
<span>Boot.dev</span>
</a>
</body>
</html>