Skip to content

Commit f43938b

Browse files
vdusekclaude
andcommitted
docs: use ApiLink component for API reference links
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 47c8c40 commit f43938b

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

docs/02_concepts/05_proxy_management.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ import ApifyProxyConfig from '!!raw-loader!roa-loader!./code/05_apify_proxy_conf
1313
import CustomProxyFunctionExample from '!!raw-loader!roa-loader!./code/05_custom_proxy_function.py';
1414
import ProxyActorInputExample from '!!raw-loader!roa-loader!./code/05_proxy_actor_input.py';
1515
import ProxyHttpxExample from '!!raw-loader!roa-loader!./code/05_proxy_httpx.py';
16+
import ApiLink from '@site/src/components/ApiLink';
1617

17-
The Apify SDK provides built-in proxy management through the [`ProxyConfiguration`](../../reference/class/ProxyConfiguration) class, supporting both [Apify Proxy](https://apify.com/proxy) and custom proxy servers. Proxies are essential for web scraping to avoid [IP address blocking](https://en.wikipedia.org/wiki/IP_address_blocking) and distribute requests across multiple addresses.
18+
The Apify SDK provides built-in proxy management through the <ApiLink to="class/ProxyConfiguration">`ProxyConfiguration`</ApiLink> class, supporting both [Apify Proxy](https://apify.com/proxy) and custom proxy servers. Proxies are essential for web scraping to avoid [IP address blocking](https://en.wikipedia.org/wiki/IP_address_blocking) and distribute requests across multiple addresses.
1819

1920
## Quick start
2021

@@ -106,4 +107,4 @@ Make sure you have the `httpx` library installed:
106107
pip install httpx
107108
```
108109

109-
For full details on proxy configuration options, see the [`ProxyConfiguration`](../../reference/class/ProxyConfiguration) API reference and the [Apify Proxy documentation](https://docs.apify.com/proxy).
110+
For full details on proxy configuration options, see the <ApiLink to="class/ProxyConfiguration">`ProxyConfiguration`</ApiLink> API reference and the [Apify Proxy documentation](https://docs.apify.com/proxy).

docs/02_concepts/06_interacting_with_other_actors.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import InteractingStartExample from '!!raw-loader!roa-loader!./code/06_interacti
1010
import InteractingCallExample from '!!raw-loader!roa-loader!./code/06_interacting_call.py';
1111
import InteractingCallTaskExample from '!!raw-loader!roa-loader!./code/06_interacting_call_task.py';
1212
import InteractingMetamorphExample from '!!raw-loader!roa-loader!./code/06_interacting_metamorph.py';
13+
import ApiLink from '@site/src/components/ApiLink';
1314

1415
The Apify SDK lets you start, call, and transform (metamorph) other Actors directly from your Actor code. This is useful for composing complex workflows from smaller, reusable Actors.
1516

@@ -51,4 +52,4 @@ For example, imagine you have an Actor that accepts a hotel URL on input, and th
5152
{InteractingMetamorphExample}
5253
</RunnableCodeBlock>
5354

54-
For the full list of methods for interacting with other Actors, see the [`Actor`](../../reference/class/Actor) API reference.
55+
For the full list of methods for interacting with other Actors, see the <ApiLink to="class/Actor">`Actor`</ApiLink> API reference.

docs/02_concepts/10_configuration.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ description: Customize Actor behavior through the Configuration class or environ
77
import RunnableCodeBlock from '@site/src/components/RunnableCodeBlock';
88

99
import ConfigExample from '!!raw-loader!roa-loader!./code/10_config.py';
10+
import ApiLink from '@site/src/components/ApiLink';
1011

11-
The [`Actor`](../../reference/class/Actor) class is configured through the [`Configuration`](../../reference/class/Configuration) class, which reads its settings from environment variables. When running on the Apify platform or through the Apify CLI, configuration is automatic — manual setup is only needed for custom requirements.
12+
The <ApiLink to="class/Actor">`Actor`</ApiLink> class is configured through the <ApiLink to="class/Configuration">`Configuration`</ApiLink> class, which reads its settings from environment variables. When running on the Apify platform or through the Apify CLI, configuration is automatic — manual setup is only needed for custom requirements.
1213

1314
If you need some special configuration, you can adjust it either through the `Configuration` class directly, or by setting environment variables when running the Actor locally.
1415

@@ -32,4 +33,4 @@ This Actor run will not persist its local storages to the filesystem:
3233
APIFY_PERSIST_STORAGE=0 apify run
3334
```
3435

35-
For the full list of configuration options, see the [`Configuration`](../../reference/class/Configuration) API reference.
36+
For the full list of configuration options, see the <ApiLink to="class/Configuration">`Configuration`</ApiLink> API reference.

0 commit comments

Comments
 (0)