Skip to content

Commit 5aee726

Browse files
committed
fix: unify titles
1 parent 1188ee3 commit 5aee726

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

sources/academy/webscraping/scraping_basics_javascript/02_data_extraction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Basics of data extraction
2+
title: Data extraction
33
description: Learn about HTML, CSS, and JavaScript, the basic building blocks of a website, and how to use them in web scraping and data extraction.
44
category: courses
55
slug: /web-scraping-for-beginners/data-extraction

sources/academy/webscraping/scraping_basics_javascript/03_browser_devtools.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Starting with browser DevTools
2+
title: "Data extraction: Starting with browser DevTools"
33
description: Learn about browser DevTools, a valuable tool in the world of web scraping, and how you can use them to extract data from a website.
44
slug: /web-scraping-for-beginners/data-extraction/browser-devtools
55
---

sources/academy/webscraping/scraping_basics_javascript/04_using_devtools.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Finding elements with DevTools
2+
title: "Data extraction: Finding elements with DevTools"
33
description: Learn how to use browser DevTools, CSS selectors, and JavaScript via the DevTools console to extract data from a website.
44
slug: /web-scraping-for-beginners/data-extraction/using-devtools
55
---

sources/academy/webscraping/scraping_basics_javascript/05_devtools_continued.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Extracting data with DevTools
2+
title: "Data extraction: Extracting data with DevTools"
33
description: Continue learning how to extract data from a website using browser DevTools, CSS selectors, and JavaScript via the DevTools console.
44
slug: /web-scraping-for-beginners/data-extraction/devtools-continued
55
---

sources/academy/webscraping/scraping_basics_javascript/06_computer_preparation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Computer preparation
2+
title: "Data extraction: Computer preparation"
33
description: Set up your computer to be able to code scrapers with Node.js and JavaScript. Download Node.js and npm and run a Hello World script.
44
slug: /web-scraping-for-beginners/data-extraction/computer-preparation
55
---

sources/academy/webscraping/scraping_basics_javascript/07_project_setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Project setup
2+
title: "Data extraction: Project setup"
33
description: Create a new project with npm and Node.js. Install necessary libraries, and test that everything works before starting the next lesson.
44
slug: /web-scraping-for-beginners/data-extraction/project-setup
55
---

sources/academy/webscraping/scraping_basics_javascript/08_node_js_scraper.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Scraping with Node.js
2+
title: "Data extraction: Scraping with Node.js"
33
description: Learn how to use JavaScript and Node.js to create a web scraper, plus take advantage of the Cheerio and Got-scraping libraries to make your job easier.
44
slug: /web-scraping-for-beginners/data-extraction/node-js-scraper
55
---

sources/academy/webscraping/scraping_basics_javascript/09_node_continued.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Extracting data with Node.js
2+
title: "Data extraction: Extracting data with Node.js"
33
description: Continue learning how to create a web scraper with Node.js and Cheerio. Learn how to parse HTML and print the results of the data your scraper has collected.
44
slug: /web-scraping-for-beginners/data-extraction/node-continued
55
---

sources/academy/webscraping/scraping_basics_javascript/10_save_to_csv.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Saving results to CSV
2+
title: "Data extraction: Saving results to CSV"
33
description: Learn how to save the results of your scraper's collected data to a CSV file that can be opened in Excel, Google Sheets, or any other spreadsheets program.
44
slug: /web-scraping-for-beginners/data-extraction/save-to-csv
55
---

sources/academy/webscraping/scraping_basics_javascript/11_crawling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Basics of crawling
2+
title: Crawling
33
description: Learn how to crawl the web with your scraper. How to extract links and URLs from web pages and how to manage the collected links to visit new pages.
44
category: courses
55
slug: /web-scraping-for-beginners/crawling

0 commit comments

Comments
 (0)