Skip to content

Commit

Permalink
docs: disable unnecessary link (#907)
Browse files Browse the repository at this point in the history
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 <banan23@gmail.com>
  • Loading branch information
honzajavorek and B4nan committed Apr 5, 2024
1 parent 8bd32e1 commit 82d6da5
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -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 `<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.

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.
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}

Expand Down

0 comments on commit 82d6da5

Please sign in to comment.