Open
Description
Is there support for action items (tasks) or is this planned?
In Confluence web an action item is created by typing []
followed by the text and optionally tagging an assignee using @Person
and setting a due date using //Date
.
Markdown could look similar to:
[ ] Task text @Person //2022-11-02
I tried these variants as well:
[] Task text
(no space between [
and ]
- [ ] Task text
(bullet point and space as suggest here: Markdown Checkbox
Confluence generates this XML
<ac:task-list>
<ac:task>
<ac:task-id>1</ac:task-id>
<ac:task-status>incomplete</ac:task-status>
<ac:task-body><span class="placeholder-inline-tasks">Task text <ac:link><ri:user ri:account-id="1df8763daa10476da25e461b" /></ac:link> <time datetime="2022-11-02" /> </span></ac:task-body>
</ac:task>
</ac:task-list>