diff --git a/docs/src/demos/Examples/TodoApp/index.vue b/docs/src/demos/Examples/TodoApp/index.vue
index 9ebd584ab..702d94998 100644
--- a/docs/src/demos/Examples/TodoApp/index.vue
+++ b/docs/src/demos/Examples/TodoApp/index.vue
@@ -17,6 +17,10 @@ const CustomDocument = Document.extend({
content: 'taskList',
})
+const CustomTaskItem = TaskItem.extend({
+ content: 'paragraph',
+})
+
export default {
components: {
EditorContent,
@@ -35,10 +39,10 @@ export default {
Paragraph(),
Text(),
TaskList(),
- TaskItem(),
+ CustomTaskItem(),
],
content: `
-
+
- A list item
- And another one
diff --git a/docs/src/docPages/api/commands.md b/docs/src/docPages/api/commands.md
index cf9e4ca67..0fb274648 100644
--- a/docs/src/docPages/api/commands.md
+++ b/docs/src/docPages/api/commands.md
@@ -18,7 +18,7 @@ While that’s perfectly fine and does make the selected bold, you’d likely wa
Most commands can be executed combined to one call. First of all, that’s shorter than separate function call in most cases. Here is an example to make the selected text bold:
```js
-editor.chain().focus().bold().run()
+editor.chain().bold().focus().run()
```
The `.chain()` is required to start a new chain and the `.run()` is needed to actually execute all the commands in between. Between those two functions, this example combines to different commands.
diff --git a/docs/src/docPages/api/extensions/collaboration-cursor.md b/docs/src/docPages/api/extensions/collaboration-cursor.md
index 52ae2f11f..3783a3417 100644
--- a/docs/src/docPages/api/extensions/collaboration-cursor.md
+++ b/docs/src/docPages/api/extensions/collaboration-cursor.md
@@ -1,9 +1,9 @@
-# Collaboration Cursor
+# CollaborationCursor
This extension adds information about all connected users (like their name and a specified color), their current cursor position and their text selection (if there’s one).
Open this page in multiple browser windows to test it.
-:::premium 💖 Pro Extension
+:::premium Pro Extension
We kindly ask you to sponsor us, before using this extension in production. [Read more](/sponsor)
:::
diff --git a/docs/src/docPages/examples/collaborative-editing.md b/docs/src/docPages/examples/collaborative-editing.md
index ea52b29ab..a765b688c 100644
--- a/docs/src/docPages/examples/collaborative-editing.md
+++ b/docs/src/docPages/examples/collaborative-editing.md
@@ -1,6 +1,6 @@
# Collaborative editing
-:::premium Requires pro extensions
+:::premium Requires Pro Extensions
We kindly ask you to sponsor us, before using this example in production. [Read more](/sponsor)
:::
diff --git a/docs/src/docPages/guide/create-your-editor.md b/docs/src/docPages/guide/create-your-editor.md
index 1977a0eed..2d270c5c0 100644
--- a/docs/src/docPages/guide/create-your-editor.md
+++ b/docs/src/docPages/guide/create-your-editor.md
@@ -1,4 +1,4 @@
-# Build your editor
+# Create your editor
## toc