echo-bravo-yahoo9k downloadsA basic taskwarrior UI for listing and modifying tasks.
This is an Obsidian plugin that allows viewing taskwarrior tasks in Obsidian's reading view. This plugin requires a functional, externally installed taskwarrior installation.
To include a table of tasks, use a task-table code block. The text inside the code block is parsed as YAML; include a key called command with the taskwarrior command that should be executed to generate the table. The syntax for this is exactly the same as the taskwarrior CLI syntax except that:
task +nonsense list is legal, but task list +nonsense and task +nonsense are not.rc.detection is set to off, and rc.defaultWidth is set to 1000.A basic use-case might look like:
```task-table
command: task list
```
You can use custom reports as well as all of taskwarrior's filter expressions:
```task-table
command: task /.*ing$/ or +work custom-report
```
You can also provide command line overrides; these are often useful for setting a context for a report or modifying a report's presentation when used in Obsidian (but not via the command line):
```task-table
command: task rc.context:home rc.report.list.filter:"status:pending" list
```
To include a count of the number of tasks, use a task-count code block. The text inside is parsed the same as a task-table code block.
```task-count
command: task rc.context:home rc.report.list.filter:"status:pending" list
```
To include an ASCII table of tasks, use a task-table-ascii code block. The text inside is parsed the same as a task-table code block, except that the output is rendered as monospace ASCII instead of as an HTML table. You will likely need to include an override for the defaultWidth so lines are not wrapped; 80 appears to work for most situations.
```task-table-ascii
command: task rc.defaultwidth:80 project:home list
```
Action buttons can be added to the task-table report. To include action buttons, add a list of enabled actions to the report's configuration under the key actions. Currently, the only supported action is refresh. Action buttons will be created in the order they are listed.
```task-table
command: task rc.defaultwidth:80 project:home list
actions:
- refresh
```
npm version <patch|minor|major>.git push && git push origin "$VERSION_TAG".npm install -g eslinteslint main.tssrc, you can use eslint with this command to analyze all files in that folder:eslint .\src\