diff --git a/docs/src/demos/Examples/Basic/index.spec.js b/docs/src/demos/Examples/Default/index.spec.js
similarity index 88%
rename from docs/src/demos/Examples/Basic/index.spec.js
rename to docs/src/demos/Examples/Default/index.spec.js
index d4d07290..bba9b613 100644
--- a/docs/src/demos/Examples/Basic/index.spec.js
+++ b/docs/src/demos/Examples/Default/index.spec.js
@@ -1,6 +1,6 @@
-context('/examples/basic', () => {
+context('/examples/default', () => {
before(() => {
- cy.visit('/examples/basic')
+ cy.visit('/examples/default')
})
beforeEach(() => {
diff --git a/docs/src/demos/Examples/Basic/index.vue b/docs/src/demos/Examples/Default/index.vue
similarity index 100%
rename from docs/src/demos/Examples/Basic/index.vue
rename to docs/src/demos/Examples/Default/index.vue
diff --git a/docs/src/docPages/api/nodes.md b/docs/src/docPages/api/nodes.md
index 451f465c..c2c44f22 100644
--- a/docs/src/docPages/api/nodes.md
+++ b/docs/src/docPages/api/nodes.md
@@ -11,13 +11,19 @@
| [BulletList](/api/nodes/bullet-list) | Yes | [GitHub](https://github.com/ueberdosis/tiptap-next/blob/main/packages/extension-bullet-list/) |
| [CodeBlock](/api/nodes/code-block) | Yes | [GitHub](https://github.com/ueberdosis/tiptap-next/blob/main/packages/extension-code-block/) |
| [Document](/api/nodes/document) | Yes | [GitHub](https://github.com/ueberdosis/tiptap-next/blob/main/packages/extension-document/) |
+| [Emoji](/api/nodes/emoji) | – | [GitHub](https://github.com/ueberdosis/tiptap-next/blob/main/packages/extension-emoji/) |
| [HardBreak](/api/nodes/hard-break) | Yes | [GitHub](https://github.com/ueberdosis/tiptap-next/blob/main/packages/extension-hard-break/) |
+| [Hashtag](/api/nodes/hashtag) | – | [GitHub](https://github.com/ueberdosis/tiptap-next/blob/main/packages/extension-hashtag/) |
| [Heading](/api/nodes/heading) | Yes | [GitHub](https://github.com/ueberdosis/tiptap-next/blob/main/packages/extension-heading/) |
| [HorizontalRule](/api/nodes/horizontal-rule) | – | [GitHub](https://github.com/ueberdosis/tiptap-next/blob/main/packages/extension-horizontal-rule/) |
| [Image](/api/nodes/image) | – | [GitHub](https://github.com/ueberdosis/tiptap-next/blob/main/packages/extension-image/) |
| [ListItem](/api/nodes/list-item) | Yes | [GitHub](https://github.com/ueberdosis/tiptap-next/blob/main/packages/extension-list-item/) |
+| [Mention](/api/nodes/mention) | Yes | [GitHub](https://github.com/ueberdosis/tiptap-next/blob/main/packages/extension-mention/) |
| [OrderedList](/api/nodes/ordered-list) | Yes | [GitHub](https://github.com/ueberdosis/tiptap-next/blob/main/packages/extension-ordered-list/) |
| [Paragraph](/api/nodes/paragraph) | Yes | [GitHub](https://github.com/ueberdosis/tiptap-next/blob/main/packages/extension-paragraph/) |
+| [Table](/api/nodes/table) | – | [GitHub](https://github.com/ueberdosis/tiptap-next/blob/main/packages/extension-table/) |
+| [TableRow](/api/nodes/table-row) | – | [GitHub](https://github.com/ueberdosis/tiptap-next/blob/main/packages/extension-table-row/) |
+| [TableCell](/api/nodes/table-cell) | – | [GitHub](https://github.com/ueberdosis/tiptap-next/blob/main/packages/extension-table-cell/) |
| [TaskList](/api/nodes/task-list) | – | [GitHub](https://github.com/ueberdosis/tiptap-next/blob/main/packages/extension-task-list/) |
| [TaskItem](/api/nodes/task-item) | – | [GitHub](https://github.com/ueberdosis/tiptap-next/blob/main/packages/extension-task-item/) |
| [Text](/api/nodes/text) | Yes | [GitHub](https://github.com/ueberdosis/tiptap-next/blob/main/packages/extension-text/) |
diff --git a/docs/src/docPages/api/overview.md b/docs/src/docPages/api/overview.md
index 506219fd..0420f1d9 100644
--- a/docs/src/docPages/api/overview.md
+++ b/docs/src/docPages/api/overview.md
@@ -9,3 +9,16 @@ The document is stored in a state. All changes are applied as transactions to th
### Extensions
Extensions add [nodes](/api/nodes), [marks](/api/marks) and/or [functionalities](/api/extensions) to the editor. A lot of those extensions bound their commands to common [keyboard shortcuts](/api/keyboard-shortcuts).
+
+## Vocabulary
+
+| Word | Description |
+| ----------- | ------------------------------------------------------------------------ |
+| schema | Configures the structure your content can have. |
+| document | The actual content in your editor. |
+| state | Everything to describe the current content and selection of your editor. |
+| transaction | A change to the state (updated selection, content, …) |
+| extension | Registeres new functionality. |
+| node | Adds blocks, like heading, paragraph. |
+| mark | Adds inline formatting, for example bold or italic. |
+| command | Execute an action inside the editor, that somehow changes the state. |
diff --git a/docs/src/docPages/examples/basic.md b/docs/src/docPages/examples/default.md
similarity index 85%
rename from docs/src/docPages/examples/basic.md
rename to docs/src/docPages/examples/default.md
index d27129b6..855996c8 100644
--- a/docs/src/docPages/examples/basic.md
+++ b/docs/src/docPages/examples/default.md
@@ -1,5 +1,4 @@
# Default text editor
-
Did we mention that you have full control over the rendering of the editor? Here is barebones example without any styling, but packed with a whole set of common extensions.
-