How to integrate task-list
/task-item
with starter-kit
?
#2004
-
The official example for Tasks is a basic editor that pretty much only allows a task list, and that's it. I'm trying to integrate the Please take a look at this CodeSandbox, and look for the line Thoughts on how to fix this? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 9 replies
-
Removing these lines should fix your issue: Document.extend({
content: 'taskList',
}), With this code you define that there can only be one tasklist in your document. |
Beta Was this translation helpful? Give feedback.
-
@philippkuehn Tried that, but when I type |
Beta Was this translation helpful? Give feedback.
-
Actually, about this, it might not be a bug after all... I mean, I was trying to add a task item to a paragraph, which was not supported by
Basically, |
Beta Was this translation helpful? Give feedback.
Removing these lines should fix your issue:
With this code you define that there can only be one tasklist in your document.