From b826c13f385b24ed1b33b8890cc5cdd5fe8b8f22 Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Mon, 3 Apr 2023 00:22:36 +0200 Subject: [PATCH] feat: improve relation kinds docs --- docs/content/doc/usage/relation_kinds.md | 26 ++++++++++++------------ 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/docs/content/doc/usage/relation_kinds.md b/docs/content/doc/usage/relation_kinds.md index 3aba536b0..78a7ff1ce 100644 --- a/docs/content/doc/usage/relation_kinds.md +++ b/docs/content/doc/usage/relation_kinds.md @@ -10,16 +10,16 @@ menu: # Available task relation kinds -| Code | Description | -|------|-------------| -| subtask | Task is a subtask of the other task. This is the opposite of `parenttask`. | -| parenttask | Task is a parent task of the other task. This is the opposite of `subtask`. | -| related | Both tasks are related to each other. How is not more specified. | -| duplicateof | Task is a duplicate of the other task. This is the opposite of `duplicates`. | -| duplicates | Task duplicates the other task. This is the opposite of `duplicateof`. | -| blocking | Task is blocking the other task. This is the opposite of `blocked`. | -| blocked | Task is blocked by the other task. This is the opposite of `blocking`. | -| precedes | Task precedes the other task. This is the opposite of `follows`. | -| follows | Task follows the other task. This is the opposite of `precedes`. | -| copiedfrom | Task is copied from the other task. This is the opposite of `copiedto`. | -| copiedto | Task is copied to the other task. This is the opposite of `copiedfrom`. | +| Code | Description | Opposite of | +|------|-------------|-------------| +| `subtask` | Task is a subtask of the other task. | `parenttask` | +| `parenttask` | Task is a parent task of the other task. | `subtask` | +| `related` | Both tasks are related to each other.
How is not more specified. | ⸺ | +| `duplicateof` | Task is a duplicate of the other task. | `duplicates` | +| `duplicates` | Task duplicates the other task. | `duplicateof` | +| `blocking` | Task is blocking the other task. | `blocked` | +| `blocked` | Task is blocked by the other task. | `blocking` | +| `precedes` | Task precedes the other task. | `follows` | +| `follows` | Task follows the other task. | `precedes` | +| `copiedfrom` | Task is copied from the other task. | `copiedto` | +| `copiedto` | Task is copied to the other task. | `copiedfrom` |