Skip to content

Commit fa54fea

Browse files
committed
[dev] fix internal links for api
1 parent 8a9e19f commit fa54fea

32 files changed

Lines changed: 73 additions & 73 deletions

docs/api/events/clonetask_event.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description: You can learn about the clone-task event in the documentation of th
1010

1111
@short: Fires when a task is pasted from the clipboard into the specified position
1212

13-
The event fires after the [paste-task](api/events/pastetask_event/) event
13+
The event fires after the [paste-task](../../../api/events/pastetask_event/) event
1414

1515
### Usage
1616

@@ -33,7 +33,7 @@ The callback of the **clone-task** event can take an object with the following p
3333
- `batch` - (required) an array of objects that were created on copying and then pasted
3434

3535
:::info
36-
To handle the inner events, you can use the [**Event Bus methods**](category/event-bus-methods/)
36+
To handle the inner events, you can use the [**Event Bus methods**](../../../category/event-bus-methods/)
3737
:::
3838

3939
### Example

docs/api/events/setsort_event.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ description: You can learn about the set-sort event in the documentation of the
2424

2525
The callback of the **set-sort** event can take an object with the following parameters:
2626

27-
- `by` - (optional) the search criterion (either the key of the [task attribute](api/configs/tasks_config/#parameters) or a search function which returns a string)
27+
- `by` - (optional) the search criterion (either the key of the [task attribute](../../../api/configs/tasks_config/#parameters) or a search function which returns a string)
2828
- `dir` - (optional) the direction of sorting: "asc" or "desc"
2929
- `tree` - (optional) defines whether sorting for child tasks is enabled
3030

3131
:::info
32-
To handle the inner events, you can use the [**Event Bus methods**](category/event-bus-methods/)
32+
To handle the inner events, you can use the [**Event Bus methods**](../../../category/event-bus-methods/)
3333
:::
3434

3535
### Example

docs/api/internal/exec_method.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ api.exec(
2727
### Events
2828

2929
:::info
30-
The full list of the To Do List internal events can be found [**here**](api/overview/events_overview.md)
30+
The full list of the To Do List internal events can be found [**here**](../../../api/overview/events_overview/)
3131
:::
3232

3333
### Example

docs/api/internal/intercept_method.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ api.intercept(
2727
### Events
2828

2929
:::info
30-
The full list of the To Do List internal events can be found [**here**](api/overview/events_overview.md)
30+
The full list of the To Do List internal events can be found [**here**](../../../api/overview/events_overview/)
3131
:::
3232

3333
### Example

docs/api/internal/on_method.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ api.on(
2727
### Events
2828

2929
:::info
30-
The full list of the To Do List internal events can be found [**here**](api/overview/events_overview.md)
30+
The full list of the To Do List internal events can be found [**here**](../../../api/overview/events_overview/)
3131
:::
3232

3333
### Example

docs/api/methods/setlocale_method.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ setLocale(
2323
- `locale` - (required) an object of the locale
2424

2525
:::important
26-
The `setLocale()` method destroys the current component and initialize a new one. If you use the component with **Toolbar**, you need to call the [`setLocale()`](../../../api/toolbar_../../../api/methods/setlocale_method.md) method of **Toolbar**, to change its locale. See the example below!
26+
The `setLocale()` method destroys the current component and initialize a new one. If you use the component with **Toolbar**, you need to call the [`setLocale()`](../../../api/toolbar_api/methods/setlocale_method/) method of **Toolbar**, to change its locale. See the example below!
2727
:::
2828

2929
### Example
@@ -132,4 +132,4 @@ list.setLocale(de);
132132
toolbar.setLocale(de, list.api);
133133
~~~
134134

135-
**Related article:** [Localization](../../../guides/localization.md)
135+
**Related article:** [Localization](../../../guides/localization/)

docs/api/methods/setsort_method.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ setSort({
2222

2323
### Parameters
2424

25-
- `by` - (optional) the search criterion (either the key of the [task attribute](../../../api/configs/tasks_config.md#parameters) or a search function which returns a string)
25+
- `by` - (optional) the search criterion (either the key of the [task attribute](../../../api/configs/tasks_config/#parameters) or a search function which returns a string)
2626
- `dir` - (optional) the direction of sorting: "asc" or "desc"
2727
- `tree` - (optional) enables/disables sorting for child tasks; **false** by default
2828

docs/api/rest_api/methods/getprojects_method.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@ Promise.all([
5353
~~~
5454
---
5555

56-
**Related articles**: [Working with Server](guides/working_with_server.md)
56+
**Related articles**: [Working with Server](../../../../guides/working_with_server/)

docs/api/rest_api/methods/getprojecttasks_method.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,4 @@ Promise.all([
5959
~~~
6060
---
6161

62-
**Related articles**: [Working with Server](guides/working_with_server.md)
62+
**Related articles**: [Working with Server](../../../../guides/working_with_server/)

docs/api/rest_api/methods/gettags_method.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@ Promise.all([
5555
~~~
5656
---
5757

58-
**Related articles**: [Working with Server](guides/working_with_server.md)
58+
**Related articles**: [Working with Server](../../../../guides/working_with_server/)

0 commit comments

Comments
 (0)