Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sources/academy/homepage_content.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"Beginner courses": [
{
"title": "Web scraping basics for JavaScript devs",
"title": "Web scraping basics with JS",
"link": "/academy/web-scraping-for-beginners",
"description": "Learn how to use JavaScript to extract information from websites in this practical course, starting from the absolute basics.",
"imageUrl": "/img/academy/intro.svg"
},
{
"title": "Web scraping basics for Python devs",
"title": "Web scraping basics with Python",
"link": "/academy/scraping-basics-python",
"description": "Learn how to use Python to extract information from websites in this practical course, starting from the absolute basics.",
"imageUrl": "/img/academy/intro.svg"
Expand Down
4 changes: 2 additions & 2 deletions sources/academy/sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module.exports = {
courses: [
{
type: 'category',
label: 'Web scraping & Automation',
label: 'Web scraping',
collapsible: false,
className: 'section-header',
items: [
Expand All @@ -14,7 +14,7 @@ module.exports = {
},
{
type: 'category',
label: 'AI',
label: 'AI agents',
collapsible: false,
className: 'section-header',
items: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title: Web scraping basics for JavaScript devs
description: Learn how to develop web scrapers with this comprehensive and practical course. Go from beginner to expert, all in one place.
sidebar_position: 1
sidebar_label: Web scraping basics with JS
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Inconsistent Category Labels Cause Navigation Issues

The category in sources/academy/webscraping/scraping_basics_javascript/index.md is web scraping & automation. This is inconsistent with the sidebar_label (Web scraping) in this file and the category (web scraping) in other related courses, potentially causing categorization and navigation issues.

Fix in Cursor Fix in Web

category: web scraping & automation
slug: /web-scraping-for-beginners
---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
title: Web scraping basics for JavaScript devs
description: Learn how to use JavaScript to extract information from websites in this practical course, starting from the absolute basics.
sidebar_position: 1.5
category: web scraping & automation
sidebar_label: Web scraping basics with JS
category: web scraping
slug: /scraping-basics-javascript2
unlisted: true
---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
title: Web scraping basics for Python devs
description: Learn how to use Python to extract information from websites in this practical course, starting from the absolute basics.
sidebar_position: 2
category: web scraping & automation
sidebar_label: Web scraping basics with Python
category: web scraping
slug: /scraping-basics-python
---

Expand Down
Loading