From 82d6da569455bdc5a8e8dece260431959e04f5ef Mon Sep 17 00:00:00 2001 From: Honza Javorek Date: Fri, 5 Apr 2024 11:24:49 +0200 Subject: [PATCH] docs: disable unnecessary link (#907) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Supersedes https://github.com/apify/apify-docs/pull/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 https://github.com/apify/apify-docs/pull/896#pullrequestreview-1960109697 --------- Co-authored-by: Martin Adámek --- .../web_scraping_for_beginners/crawling/finding_links.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/academy/webscraping/web_scraping_for_beginners/crawling/finding_links.md b/sources/academy/webscraping/web_scraping_for_beginners/crawling/finding_links.md index 3cb8f9ced..77f8c3c88 100644 --- a/sources/academy/webscraping/web_scraping_for_beginners/crawling/finding_links.md +++ b/sources/academy/webscraping/web_scraping_for_beginners/crawling/finding_links.md @@ -59,7 +59,7 @@ We'll start from a boilerplate that's very similar to the scraper we built in [B Aside from importing libraries and downloading HTML, we load the HTML into Cheerio and then use it to retrieve all the `` 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. -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 **** protocol. We'll learn what to do with them in the following lessons. +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. ## Next Up {#next}