Update README.md

Added gifs with examples of the possible types.
Hoffelhas 2020-03-31 15:27:04 +02:00 committed by GitHub
parent 3df109222d
commit e2a52caead
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -24,15 +24,23 @@ Sequential list processing
-------------------------- --------------------------
If a project or task ends with `--`, the child tasks will be treated as a priority queue and the most important will be labeled `@next_action`. Importance is determined by order in the list. If a project or task ends with `--`, the child tasks will be treated as a priority queue and the most important will be labeled `@next_action`. Importance is determined by order in the list.
![Serial task](https://i.imgur.com/SUkhPiE.gif)
Parallel list processing Parallel list processing
------------------------ ------------------------
If a project or task name ends with `//`, the child tasks will be treated as parallel `@next_action`s. If a project or task name ends with `//`, the child tasks will be treated as parallel `@next_action`s.
A waterfall processing is applied, where the lowest possible child tasks are labelled. A waterfall processing is applied, where the lowest possible child tasks are labelled.
![Parallel task](https://i.imgur.com/NPTLQ8B.gif)
Parentless tasks Parentless tasks
------------------------ ------------------------
Any parentless task can be be given a type by appending `//` or `--` to the name of the task. This works if there is no list type, and will override a previously defined list type. Any parentless task can be be given a type by appending `//` or `--` to the name of the task. This works if there is no list type, and will override a previously defined list type.
[See example 1 with a parallel project](https://i.imgur.com/d9Qfq0v.gif)
[See example 2 with a serial project](https://i.imgur.com/JfaAOzZ.gif)
Executing NextAction Executing NextAction
==================== ====================