Skip to content

Commit 8bdcdf6

Browse files
committed
[dev] fix open html tags
1 parent f87109e commit 8bdcdf6

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

docs/api/events/keypressontodo_event.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,14 @@ The key codes described below are not available if focus is set on the Search ba
7272
| **ArrowUp** |arrowup| Moves the selection up to the previous task |
7373
| **ArrowDown** |arrowdown| Moves the selection down to the next task |
7474
| **Ctrl(Cmd)+Enter** |ctrl+enter| Opens the editor of the selected task |
75-
|**Ctrl(Cmd)+Click** /<br>**Ctrl(Cmd)+Shift+Click** <br> added in v1.1|ctrl /<br>ctrl+shift|Selects multiple tasks with all their children.<br> If the task is currently selected - unselects it, moreover:<br> - If the task has parents which are also selected - unselects the task together with its parents.<br> - If the task has children which are also selected - unselects only the task itself.|
76-
|**Shift+Click** <br> added in v1.1|shift|Selects a range of tasks|
77-
|**Shift+ArrowUp** <br> added in v1.1|shift+arrowup|Selects a task above the current one.<br> If the task above is currently selected - unselects it|
78-
|**Shift+ArrowDown** <br> added in v1.1|shift+arrowdown|Selects a task (and all its children) below the current one.<br> If the task below is currently selected - unselects it|
75+
|**Ctrl(Cmd)+Click** /<br />**Ctrl(Cmd)+Shift+Click** <br /> added in v1.1|ctrl /<br />ctrl+shift|Selects multiple tasks with all their children.<br /> If the task is currently selected - unselects it, moreover:<br /> - If the task has parents which are also selected - unselects the task together with its parents.<br /> - If the task has children which are also selected - unselects only the task itself.|
76+
|**Shift+Click** <br /> added in v1.1|shift|Selects a range of tasks|
77+
|**Shift+ArrowUp** <br /> added in v1.1|shift+arrowup|Selects a task above the current one.<br /> If the task above is currently selected - unselects it|
78+
|**Shift+ArrowDown** <br /> added in v1.1|shift+arrowdown|Selects a task (and all its children) below the current one.<br /> If the task below is currently selected - unselects it|
7979
| **Ctrl+ArrowUp** |ctrl+arrowup| Moves the selected task up within the same level |
8080
| **Ctrl+ArrowDown** |ctrl+arrowdown| Moves the selected task down within the same level |
8181
| **Space** |space| Marks a task as complete or incomplete depending on its initial state |
82-
| **Delete/<br>Backspace** |delete/<br>backspace | Removes the selected task by the following logic:<br> - after removing a child task, moves the selection down/up until it reaches the parent task <br>- after removing a parent task, moves the selection down to the next parent task if it's exist; otherwise, moves the selection up to the previous parent task |
82+
| **Delete/<br />Backspace** |delete/<br />backspace | Removes the selected task by the following logic:<br /> - after removing a child task, moves the selection down/up until it reaches the parent task <br />- after removing a parent task, moves the selection down to the next parent task if it's exist; otherwise, moves the selection up to the previous parent task |
8383
| **ArrowRight** |arrowright| Expands the collapsed parent task |
8484
| **ArrowLeft** |arrowleft| Collapses the expanded parent task. If the task is already collapsed or does not have child tasks, moves selection to the parent task |
8585
| **Tab** |tab| Demotes the nesting level of the task to one lower level |

docs/api/methods/addtask_method.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ addTask({
2727

2828
- `id` - (optional) the ID of a new task
2929
- `parent` - (optional) the ID of the parent task
30-
- `project` - (optional) the ID of the project. By default, the ID of the [currently active project](../../configs/activeproject_config/)<br>
30+
- `project` - (optional) the ID of the project. By default, the ID of the [currently active project](../../configs/activeproject_config/)<br />
3131
:::info
3232
In case the active project is specified but you need to add a task into the *No project* section, specify the value of the parameter to **null**
3333
:::

docs/api/methods/movetask_method.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ moveTask({
2727
### Parameters
2828

2929
- `id` - (optional) the ID of the task to be moved
30-
- `project` - (optional) the ID of the project<br>
30+
- `project` - (optional) the ID of the project<br />
3131
:::info
3232
To move a task to the *No project* section, specify the value of the parameter to **null**
3333
:::

docs/api/rest_api/routes/post_routes/post_clone.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Example:
8383

8484
### Response
8585

86-
The route returns a json object with the client task ID and duplicated task ID of the server.<br>
86+
The route returns a json object with the client task ID and duplicated task ID of the server.<br />
8787
Client tasks IDs are temporary IDs received in the requests and values are new tasks IDs generated during data saving.
8888

8989
Example:

docs/api/rest_api/routes/put_routes/put_tasks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Example:
5656

5757
You can find another example of the task object in the [**tasks**](/api/configs/tasks_config/) section.
5858

59-
To update multiple tasks with one request, you should add an array of tasks objects with necessary changes to the **batch** object in the request body.<br> In this case the task ID in the request line is also mandatory with all task parameters that precede the **batch** object in the request body.
59+
To update multiple tasks with one request, you should add an array of tasks objects with necessary changes to the **batch** object in the request body.<br /> In this case the task ID in the request line is also mandatory with all task parameters that precede the **batch** object in the request body.
6060

6161
Example:
6262

0 commit comments

Comments
 (0)