Due dates/times for tasks

This post was last updated for 468 days ago, and the information may already be changed

Hello friends. In SiYuan, is it possible to create a todo item (using the "- [ ]" Markdown syntax) that specifies a due date/time?

    Related articles

    Welcome to here!

    Here we can learn from each other how to use SiYuan, give feedback and suggestions, and build SiYuan together.

    Signup About
    Please input reply content ...
    • sylwair

      You can try the Task List plugin, which enhances task-related features.

      image.png

    • MiscReply
    • nekron

      Task List plugin doesn't allow currently so set any due dates. So if you simply want a list of your scattered tasks there is an easy SiYuan-native solution for this by simply embedding an empty block and editing the SQL like this:

      SELECT * FROM blocks 
      WHERE markdown LIKE '%[ ]%' 
      AND subtype = 't' 
      AND type = 'i' 
      ORDER BY created, sort
      

      This will show you a list of all tasks found throughout your repository and lists them nicely in sorted order by creation date, i.e. the oldest task is the first one on the list. Once a task had been checked as completed it will be removed from that list when refreshing the embedded block.

    • pm
      VIP Warrior Author

      I greatly appreciate your responses, @sylwair and @nekron. Unfortunately, these do not address the issue of associating due date/times with tasks. Hopefully a solution will emerge.