Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,32 @@ There are also a few commands bundled in with the plugin:

Similiar to the previous command, this one also appends a link to the current active page to the task input.

## Examples

Show current and overdue tasks ordered by date and priority and also grouped by project and section. This helps you to stay on top of things:

````markdown
```todoist
{
"name": "Highest Prio/Date",
"filter": "today | overdue",
"sorting": ["date", "priority"],
"group": true
}
```
````

Show the inbox only. This gives you an indication how hard you are procrastinating right now or if you got an I/O problem in your productivity:

````markdown
```todoist
{
"name": "Inbox",
"filter": "#inbox"
}
```
````

## CSS

This plugin comes with default CSS intended for use with the default Obsidian themes.
Expand Down