Skip to content

Commit f261dce

Browse files
committed
[dev] fix internal links to guides for events' pages
1 parent b697740 commit f261dce

32 files changed

Lines changed: 74 additions & 74 deletions

docs/api/events/addproject_event.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The callback of the **add-project** event can take an object with the following
2828
- `label` - (optional) the name of the project
2929

3030
:::info
31-
To handle the inner events, you can use the [**Event Bus methods**](category/event-bus-methods.md)
31+
To handle the inner events, you can use the [**Event Bus methods**](category/event-bus-methods/)
3232
:::
3333

3434
### Example
@@ -53,4 +53,4 @@ list.api.on("add-project", ({id, project}) => {
5353
});
5454
~~~
5555

56-
**Related article:** [Operations with projects](guides/project_operations.md#adding-a-new-project)
56+
**Related article:** [Operations with projects](../../../guides/project_operations/#adding-a-new-project)

docs/api/events/addtask_event.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The callback of the **add-task** event can take an object with the following par
3535
- `task` - (required) the object of the added task
3636

3737
:::info
38-
To handle the inner events, you can use the [**Event Bus methods**](category/event-bus-methods.md)
38+
To handle the inner events, you can use the [**Event Bus methods**](../../../category/event-bus-methods/)
3939
:::
4040

4141
### Example
@@ -60,4 +60,4 @@ list.api.on("add-task", (obj) => {
6060
});
6161
~~~
6262

63-
**Related article:** [Operations with tasks](guides/task_operations.md#adding-a-new-task)
63+
**Related article:** [Operations with tasks](../../../guides/task_operations/#adding-a-new-task)

docs/api/events/assignuser_event.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The callback of the **assign-user** event can take an object with the following
2727
- `userId` - (required) the id of the user assigned to the task
2828

2929
:::info
30-
To handle the inner events, you can use the [**Event Bus methods**](category/event-bus-methods.md)
30+
To handle the inner events, you can use the [**Event Bus methods**](category/event-bus-methods/)
3131
:::
3232

3333
### Example
@@ -52,4 +52,4 @@ list.api.on("assign-user", ({id, userId}) => {
5252
});
5353
~~~
5454

55-
**Related article:** [Task users](guides/task_users.md)
55+
**Related article:** [Task users](../../../guides/task_users/)

docs/api/events/checktask_event.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The callback of the **check-task** event can take an object with the following p
2727
- `manual` - (optional) **true** if the task is marked as completed in the "manual" mode
2828

2929
:::info
30-
To handle the inner events, you can use the [**Event Bus methods**](category/event-bus-methods.md)
30+
To handle the inner events, you can use the [**Event Bus methods**](category/event-bus-methods/)
3131
:::
3232

3333
### Example
@@ -52,4 +52,4 @@ list.api.on("check-task", ({id}) => {
5252
});
5353
~~~
5454

55-
**Related article:** [Operations with tasks](guides/task_operations.md#marking-a-task-completeincomplete)
55+
**Related article:** [Operations with tasks](../../../guides/task_operations/#marking-a-task-completeincomplete)

docs/api/events/clonetask_event.md

Lines changed: 3 additions & 3 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.md) 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.md)
36+
To handle the inner events, you can use the [**Event Bus methods**](category/event-bus-methods/)
3737
:::
3838

3939
### Example
@@ -58,4 +58,4 @@ list.api.on("clone-task", (obj) => {
5858
});
5959
~~~
6060

61-
**Related article:** [Operations with tasks](guides/task_operations.md#copyingpasting-a-task)
61+
**Related article:** [Operations with tasks](../../../guides/task_operations/#copyingpasting-a-task)

docs/api/events/closeinlineeditor_event.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The callback of the **close-inline-editor** event can take an object with the fo
2727
- `save` - (required) **true** if the made changes have been saved after closing the editor; otherwise, **false**
2828

2929
:::info
30-
To handle the inner events, you can use the [**Event Bus methods**](category/event-bus-methods.md)
30+
To handle the inner events, you can use the [**Event Bus methods**](category/event-bus-methods/)
3131
:::
3232

3333
### Example
@@ -52,4 +52,4 @@ list.api.on("close-inline-editor", ({id, save}) => {
5252
});
5353
~~~
5454

55-
**Related article:** [Inline editing](guides/inline_editing.md#working-with-editor)
55+
**Related article:** [Inline editing](../../../guides/inline_editing/#working-with-editor)

docs/api/events/collapsetask_event.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The callback of the **collapse-task** event can take an object with the followin
2525
- `id` - (required) the id of a task
2626

2727
:::info
28-
To handle the inner events, you can use the [**Event Bus methods**](category/event-bus-methods.md)
28+
To handle the inner events, you can use the [**Event Bus methods**](category/event-bus-methods/)
2929
:::
3030

3131
### Example
@@ -50,4 +50,4 @@ list.api.on("collapse-task", ({id}) => {
5050
});
5151
~~~
5252

53-
**Related article:** [Operations with tasks](guides/task_operations.md#expandingcollapsing-a-task)
53+
**Related article:** [Operations with tasks](../../../guides/task_operations/#expandingcollapsing-a-task)

docs/api/events/copytask_event.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ In case the copied task is also pasted from the clipboard into another position,
4040
- `reverse` - (optional) **true**, if the copied task is pasted before the target task; otherwise, **false**
4141

4242
:::info
43-
To handle the inner events, you can use the [**Event Bus methods**](category/event-bus-methods.md)
43+
To handle the inner events, you can use the [**Event Bus methods**](category/event-bus-methods/)
4444
:::
4545

4646
### Example
@@ -67,4 +67,4 @@ list.api.on("copy-task", ({id}) => {
6767

6868
**Change log:** The `join` parameter was added in v1.1
6969

70-
**Related article:** [Operations with tasks](guides/task_operations.md#copyingpasting-a-task)
70+
**Related article:** [Operations with tasks](../../../guides/task_operations/#copyingpasting-a-task)

docs/api/events/deleteproject_event.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The callback of the **delete-project** event can take an object with the followi
2525
- `id` - (required) the ID of a project
2626

2727
:::info
28-
To handle the inner events, you can use the [**Event Bus methods**](category/event-bus-methods.md)
28+
To handle the inner events, you can use the [**Event Bus methods**](category/event-bus-methods/)
2929
:::
3030

3131
### Example
@@ -50,4 +50,4 @@ list.api.on("delete-project", ({id}) => {
5050
});
5151
~~~
5252

53-
**Related article:** [Operations with projects](guides/project_operations.md#deleting-a-project)
53+
**Related article:** [Operations with projects](../../../guides/project_operations/#deleting-a-project)

docs/api/events/deletetask_event.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The callback of the **delete-task** event can take an object with the following
2525
- `id` - (required) the ID of a removed task
2626

2727
:::info
28-
To handle the inner events, you can use the [**Event Bus methods**](category/event-bus-methods.md)
28+
To handle the inner events, you can use the [**Event Bus methods**](category/event-bus-methods/)
2929
:::
3030

3131
### Example
@@ -50,4 +50,4 @@ list.api.on("delete-task", ({id}) => {
5050
});
5151
~~~
5252

53-
**Related article:** [Operations with tasks](guides/task_operations.md#deleting-a-task)
53+
**Related article:** [Operations with tasks](../../../guides/task_operations/#deleting-a-task)

0 commit comments

Comments
 (0)