Obsidian Tasks Available

This is awesome!
Did you post it on the Tasks github page as an issue? perhaps it could make it to the official plugin (perhaps as a toggle in the settings “make compatible with kanban”)

I’m trying to use this query and it returns no result, although I have tasks with this due date:

not done
due on 2022-12-26

What it might be? Are there any known conflicts with other plugins?

UPDATE:
I found what caused the problem.
The task should end with the date. There shouldn’t be any other text or description after the date. Strangely enough, I couldn’t find anything about it in the manual.

First of all, thank you very much for the plugin!

FWIW, I was trying to use the example shown in the advanced section, and this part would not run:

### Due in the next two weeks
```tasks
not done
due after {{date:YYYY-MM-DD}}
due before {{date+14d:YYYY-MM-DD}}

I got a "Due Date not recognized" error. 

I had to use the Date.Now function from the TP plugin to get it to work:


```tasks 
    not done 
    due after <% tp.date.now("dddd Do MMMM YYYY") %>
    due before <% tp.date.now("dddd Do MMMM YYYY", 7) %>
    tags include ASG 

I’m not sure if there was a conflict with the other one, or what, but it would not work for me because of the error.