Skip to content

Commit d459aae

Browse files
docs: fix documentation links to use /docs/introduction path
Update document ID from 'overview' to 'introduction' to align the URL path with the section name. This fixes navigation issues where the Docs button and other links were pointing to /docs/overview instead of /docs/introduction. Changes: - Change document ID in introduction page from 'overview' to 'introduction' - Update Docs navigation link in docusaurus config - Update Get Started button on homepage - Fix Documentation URL in pyproject.toml - Update README link to point to quick-start guide Co-Authored-By: Claude Sonnet 4.5 (1M context) <noreply@anthropic.com>
1 parent 51f7810 commit d459aae

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ To create and run Actors through Apify Console,
159159
see the [Console documentation](https://docs.apify.com/academy/getting-started/creating-actors#choose-your-template).
160160

161161
To create and run Python Actors locally, check the documentation for
162-
[how to create and run Python Actors locally](https://docs.apify.com/sdk/python/docs/overview/running-locally).
162+
[how to create and run Python Actors locally](https://docs.apify.com/sdk/python/docs/quick-start).
163163

164164
## Guides
165165

docs/01_introduction/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
id: overview
2+
id: introduction
33
title: Overview
44
sidebar_label: Overview
55
description: 'The official library for creating Apify Actors in Python, providing tools for web scraping, automation, and data storage integration.'

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ scrapy = ["scrapy>=2.11.0"]
5656
"Apify Homepage" = "https://apify.com"
5757
"Changelog" = "https://docs.apify.com/sdk/python/docs/changelog"
5858
"Discord" = "https://discord.com/invite/jyEM2PRvMU"
59-
"Documentation" = "https://docs.apify.com/sdk/python/docs/overview/introduction"
59+
"Documentation" = "https://docs.apify.com/sdk/python/docs/introduction"
6060
"Homepage" = "https://docs.apify.com/sdk/python/"
6161
"Issue Tracker" = "https://github.com/apify/apify-sdk-python/issues"
6262
"Release Notes" = "https://docs.apify.com/sdk/python/docs/upgrading/upgrading-to-v2"

website/docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ module.exports = {
6666
title: 'SDK for Python',
6767
items: [
6868
{
69-
to: 'docs/overview',
69+
to: 'docs/introduction',
7070
label: 'Docs',
7171
position: 'left',
7272
activeBaseRegex: '/docs(?!/changelog)',

website/src/pages/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function Hero() {
3535
<div className="row">
3636
<div className="col">
3737
<div className={styles.heroButtons}>
38-
<Link to="/docs/overview" className={styles.getStarted}>Get Started</Link>
38+
<Link to="/docs/introduction" className={styles.getStarted}>Get Started</Link>
3939
<iframe src="https://ghbtns.com/github-btn.html?user=apify&repo=apify-sdk-python&type=star&count=true&size=large" frameBorder="0" scrolling="0" width="170" height="30" title="GitHub"></iframe>
4040
</div>
4141
</div>

0 commit comments

Comments
 (0)