diff --git a/Tasks Plugin - Review and check your Statuses 2024-11-13 10-58-43.md b/Tasks Plugin - Review and check your Statuses 2024-11-13 10-58-43.md deleted file mode 100644 index 55cec78..0000000 --- a/Tasks Plugin - Review and check your Statuses 2024-11-13 10-58-43.md +++ /dev/null @@ -1,56 +0,0 @@ -# Review and check your Statuses - -## About this file - -This file was created by the Obsidian Tasks plugin (version 7.13.0) to help visualise the task statuses in this vault. - -If you change the Tasks status settings, you can get an updated report by: - -- Going to `Settings` -> `Tasks`. -- Clicking on `Review and check your Statuses`. - -You can delete this file any time. - -## Status Settings - - - -These are the status values in the Core and Custom statuses sections. - -| Status Symbol | Next Status Symbol | Status Name | Status Type | Problems (if any) | -| ----- | ----- | ----- | ----- | ----- | -| `space` | `x` | Todo | `TODO` | | -| `x` | `space` | Done | `DONE` | | -| `/` | `x` | In Progress | `IN_PROGRESS` | | -| `-` | `space` | Cancelled | `CANCELLED` | | - -## Loaded Settings - - - -These are the settings actually used by Tasks. - -```mermaid -flowchart LR - -classDef TODO stroke:#f33,stroke-width:3px; -classDef DONE stroke:#0c0,stroke-width:3px; -classDef IN_PROGRESS stroke:#fa0,stroke-width:3px; -classDef CANCELLED stroke:#ddd,stroke-width:3px; -classDef NON_TASK stroke:#99e,stroke-width:3px; - -1["'Todo'
[ ] -> [x]
(TODO)"]:::TODO -2["'Done'
[x] -> [ ]
(DONE)"]:::DONE -3["'In Progress'
[/] -> [x]
(IN_PROGRESS)"]:::IN_PROGRESS -4["'Cancelled'
[-] -> [ ]
(CANCELLED)"]:::CANCELLED -1 --> 2 -2 --> 1 -3 --> 2 -4 --> 1 - -linkStyle default stroke:gray -```