42 lines
767 B
Markdown
Executable File
42 lines
767 B
Markdown
Executable File
# 🏥 Task Hospital
|
|
```tasks
|
|
not done
|
|
(no due date) OR (no scheduled date)
|
|
sort by function task.created.format("dddd")
|
|
```
|
|
# 😎 Tasks
|
|
>[!danger] **Extreme Urgency Tasks**
|
|
>```tasks
|
|
>not done
|
|
>show urgency
|
|
>filter by function task.urgency >14.999
|
|
>sort by urgency
|
|
>group by tags
|
|
> ```
|
|
|
|
>[!warning] **High Urgency Tasks**
|
|
>```tasks
|
|
>not done
|
|
>show urgency
|
|
>filter by function task.urgency >9.999 && task.urgency<15.0
|
|
>sort by urgency
|
|
>group by tags
|
|
> ```
|
|
|
|
>[!todo] **Medium Urgency Tasks**
|
|
>```tasks
|
|
>not done
|
|
>show urgency
|
|
>filter by function task.urgency >4.999 && task.urgency<10.0
|
|
>sort by urgency
|
|
>group by tags
|
|
> ```
|
|
|
|
>[!done] **Low Urgency Tasks**
|
|
>```tasks
|
|
>not done
|
|
>show urgency
|
|
>filter by function task.urgency <5.0
|
|
>sort by urgency
|
|
>group by tags
|
|
> ``` |