Skip to content

Commit 82d6da5

Browse files
honzajavorekB4nan
andauthored
docs: disable unnecessary link (#907)
Supersedes #896: - better commit names - made on top of current `master`, properly using `git` and not a GitHub pencil 😅 - using inline code per @B4nan's comment #896 (review) --------- Co-authored-by: Martin Adámek <[email protected]>
1 parent 8bd32e1 commit 82d6da5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sources/academy/webscraping/web_scraping_for_beginners/crawling/finding_links.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ We'll start from a boilerplate that's very similar to the scraper we built in [B
5959

6060
Aside from importing libraries and downloading HTML, we load the HTML into Cheerio and then use it to retrieve all the `<a>` elements. After that, we iterate over the collected links and print their `href` attributes, which we access using the [`.attr()`](https://cheerio.js.org/docs/api/classes/Cheerio#attr) method.
6161

62-
When you run the above code, you'll see quite a lot of links in the terminal. Some of them may look wrong, because they don't start with the regular **<https://>** protocol. We'll learn what to do with them in the following lessons.
62+
When you run the above code, you'll see quite a lot of links in the terminal. Some of them may look wrong, because they don't start with the regular `https://` protocol. We'll learn what to do with them in the following lessons.
6363

6464
## Next Up {#next}
6565

0 commit comments

Comments
 (0)