New plug: Kanban integration with tasks

Iโ€™ve created a new plugin that can generate kanban boards with the query system:

 * [TODO]  help with things ๐Ÿ“… 2022-11-26 #test [user:test] 
 * [ON GOING] help
```kanban
template:
  template
query:
  task where page = @page.name
columns:
  - id: TODO
    title: ToDo
  - id: ON GOING
    title: On Going
  - id: DONE
    title: Done
options:
  dragItems: false
  dragTables: false
``\`

Will show as:

At the moment it just renders it, but I hope I can make changes that you make on the board to reflect on the list of tasks.

To install run the {[Plugs: Add]} command and paste in: github:dandimrod/silverbullet-kanban/kanban.plug.js

Link to the repository

As always, any feedback is appreciated!

8 Likes

This looks very promising. Canโ€™t wait to try this out!