-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy paththings2md.json.example
More file actions
61 lines (61 loc) · 2.15 KB
/
things2md.json.example
File metadata and controls
61 lines (61 loc) · 2.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"filters": {
"remove_area_emojis": true,
"remove_heading_emojis": false,
"remove_project_emojis": true,
"remove_task_emojis": false,
"remove_empty_checklist_items": false,
"skip_tags": ["personal", "pers", "ignore"]
},
"formatting": {
"area_sep": "//",
"date_sep": "•",
"deadline_sep": "⚑",
"heading_sep": ":",
"project_sep": "//",
"status_symbols": {
"canceled": "[x]",
"completed": "[/]",
"incomplete": "[ ]"
}
},
"templates": [
{
"name": "default",
"groupby_project": "\n## ☑️ {project}\n",
"groupby_date": "\n## ☑️ {date}\n",
"groupby_area": "\n## {area}\n",
"project": "- {status} {title} [↗]({url}) {date} {deadline_sep} {deadline}",
"task": "- {status} [[{project}]] {project_sep} {heading} {heading_sep} {title} [↗]({url}) {date_sep} {date} {deadline_sep} {deadline} {tags}",
"notes": "{notes}",
"checklist_item": "- {status} {title}"
},
{
"name": "simple",
"groupby_project": " ",
"groupby_date": " ",
"groupby_area": " ",
"project": "- {status} {title} [↗]({url}) {date} {deadline_sep} {deadline}",
"task": "- {status} [[{project}]] {project_sep} {heading} {heading_sep} {title} [↗]({url}) {date_sep} {date} {deadline_sep} {deadline} {tags}",
"notes": "",
"checklist_item": ""
},
{
"name": "projects",
"groupby_project": "",
"groupby_date": "",
"groupby_area": "\n## {area}\n",
"project": "- {title} [↗]({url}) {area_sep} {area} {date_sep} {date} {deadline_sep} {deadline} {tags}",
"task": "",
"notes": "",
"checklist_item": ""
},
{
"name": "note",
"type": "markdown_note",
"title": "## {title}\n\n",
"body": "{notes}\n\n{checklist}\n\n---\n",
"checklist_item": "- {status} {title}"
}
]
}