From 3c176f6e3e92c56f40c2500a1ad9deab463faace Mon Sep 17 00:00:00 2001 From: Hans Pagel Date: Thu, 16 Sep 2021 14:31:54 +0200 Subject: [PATCH 1/9] docs: clean up --- docs/src/docPages/experiments.md | 2 - .../experiments/collaboration-annotation.md | 46 ------------------- .../experiments/global-drag-handle.md | 8 ---- 3 files changed, 56 deletions(-) delete mode 100644 docs/src/docPages/experiments/collaboration-annotation.md delete mode 100644 docs/src/docPages/experiments/global-drag-handle.md diff --git a/docs/src/docPages/experiments.md b/docs/src/docPages/experiments.md index 7b665c3c..7de117e3 100644 --- a/docs/src/docPages/experiments.md +++ b/docs/src/docPages/experiments.md @@ -4,13 +4,11 @@ Congratulations! You’ve found our playground with a list of experiments. Be aw ## Experimental examples * [Linter](/experiments/linter) * [Content of multiple editors in a single Y.js](/experiments/multiple-editors) -* [Global drag handle](/experiments/global-drag-handle) * [Generic Figure](/experiments/generic-figure) ## Experimental extensions * [@tiptap/extension-command-menu](/experiments/commands) * [@tiptap/extension-iframe](/experiments/embeds) * [@tiptap/extension-toggle-list](/experiments/details) -* [@tiptap/extension-collaboration-annotation](/experiments/collaboration-annotation) * [@tiptap/extension-trailing-node](/experiments/trailing-node) * [@tiptap/extension-figure](/experiments/figure) diff --git a/docs/src/docPages/experiments/collaboration-annotation.md b/docs/src/docPages/experiments/collaboration-annotation.md deleted file mode 100644 index 51b1ef85..00000000 --- a/docs/src/docPages/experiments/collaboration-annotation.md +++ /dev/null @@ -1,46 +0,0 @@ -# CollaborationAnnotation - - -⚠️ Experiment - -:::warning Don’t use this in production -This extension still has major issues (for example https://github.com/yjs/y-prosemirror/issues/44). We’re looking for funding to finish the extension. If you think you can help with that, reach out to humans@tiptap.dev! -::: - -Annotations can be used to add additional information to the content, for example comments. They live on a different level than the actual editor content. - - - -## Installation -```bash -# with npm -npm install @tiptap/extension-collaboration-annotation - -# with Yarn -yarn add @tiptap/extension-collaboration-annotation -``` - -This extension requires the [`Collaboration`](/api/extensions/collaboration) extension. - -## Settings -| Option | Type | Default | Description | -| -------- | -------- | ----------- | ---------------------------------------------------------------------------------- | -| document | `Object` | `null` | An initialized Y.js document. | -| field | `String` | `'default'` | Name of a Y.js map, can be changed to sync multiple fields with one Y.js document. | -| map | `Object` | `null` | A raw Y.js map, can be used instead of `document` and `field`. | - -## Commands -| Command | Parameters | Description | -| ---------------- | ---------- | ------------------------------------------------------------------------- | -| addAnnotation | data | Adds an annotation to the current selection, takes a string or an object. | -| updateAnnotation | id, data | Update the data that’s associated with an annotation. | -| deleteAnnotation | id | Remove an annotation. | - - - -## Usage - diff --git a/docs/src/docPages/experiments/global-drag-handle.md b/docs/src/docPages/experiments/global-drag-handle.md deleted file mode 100644 index ce152ea6..00000000 --- a/docs/src/docPages/experiments/global-drag-handle.md +++ /dev/null @@ -1,8 +0,0 @@ -# GlobalDragHandle - -⚠️ Experiment - -## Issues -* We’re working on a better, more solid implementation. :) Give us some more time, and please, don’t ask when it’s ready. The best thing to speed up the development is to [sponsor our work](/sponsor) on GitHub. - - From e7caee037eef98977ae06834f536656a7cb3f95c Mon Sep 17 00:00:00 2001 From: Hans Pagel Date: Thu, 16 Sep 2021 16:04:15 +0200 Subject: [PATCH 2/9] docs: replace ContentMissing component --- .../docPages/api/commands/create-paragraph-near.md | 4 +++- docs/src/docPages/api/commands/delete-node.md | 4 +++- docs/src/docPages/api/commands/delete-range.md | 4 +++- docs/src/docPages/api/commands/delete-selection.md | 4 +++- docs/src/docPages/api/commands/enter.md | 4 +++- docs/src/docPages/api/commands/exit-code.md | 4 +++- .../src/docPages/api/commands/insert-content-at.md | 4 +++- docs/src/docPages/api/commands/join-backward.md | 4 +++- docs/src/docPages/api/commands/join-forward.md | 4 +++- .../src/docPages/api/commands/keyboard-shortcut.md | 4 +++- docs/src/docPages/api/commands/lift-empty-block.md | 4 +++- docs/src/docPages/api/commands/lift-list-item.md | 4 +++- docs/src/docPages/api/commands/lift.md | 4 +++- docs/src/docPages/api/commands/newline-in-code.md | 4 +++- docs/src/docPages/api/commands/reset-attributes.md | 4 +++- docs/src/docPages/api/commands/scroll-into-view.md | 4 +++- .../docPages/api/commands/select-node-backward.md | 4 +++- .../docPages/api/commands/select-node-forward.md | 4 +++- .../docPages/api/commands/select-parent-node.md | 4 +++- docs/src/docPages/api/commands/set-mark.md | 4 +++- .../docPages/api/commands/set-node-selection.md | 4 +++- docs/src/docPages/api/commands/set-node.md | 4 +++- docs/src/docPages/api/commands/sink-list-item.md | 4 +++- docs/src/docPages/api/commands/split-block.md | 4 +++- docs/src/docPages/api/commands/split-list-item.md | 4 +++- docs/src/docPages/api/commands/toggle-list.md | 4 +++- docs/src/docPages/api/commands/toggle-mark.md | 4 +++- docs/src/docPages/api/commands/toggle-node.md | 4 +++- docs/src/docPages/api/commands/toggle-wrap.md | 4 +++- docs/src/docPages/api/commands/undo-input-rule.md | 4 +++- docs/src/docPages/api/commands/unset-all-marks.md | 4 +++- docs/src/docPages/api/commands/unset-mark.md | 4 +++- docs/src/docPages/api/commands/wrap-in-list.md | 4 +++- docs/src/docPages/changelog.md | 14 ++------------ 34 files changed, 101 insertions(+), 45 deletions(-) diff --git a/docs/src/docPages/api/commands/create-paragraph-near.md b/docs/src/docPages/api/commands/create-paragraph-near.md index 9da1f331..96d1d0f2 100644 --- a/docs/src/docPages/api/commands/create-paragraph-near.md +++ b/docs/src/docPages/api/commands/create-paragraph-near.md @@ -1,3 +1,5 @@ # createParagraphNear - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/api/commands/delete-node.md b/docs/src/docPages/api/commands/delete-node.md index 42c7357b..72711e0f 100644 --- a/docs/src/docPages/api/commands/delete-node.md +++ b/docs/src/docPages/api/commands/delete-node.md @@ -1,3 +1,5 @@ # deleteNode - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/api/commands/delete-range.md b/docs/src/docPages/api/commands/delete-range.md index 32fd3ae5..6b364c4f 100644 --- a/docs/src/docPages/api/commands/delete-range.md +++ b/docs/src/docPages/api/commands/delete-range.md @@ -1,3 +1,5 @@ # deleteRange - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/api/commands/delete-selection.md b/docs/src/docPages/api/commands/delete-selection.md index f698e9ae..e6f21f62 100644 --- a/docs/src/docPages/api/commands/delete-selection.md +++ b/docs/src/docPages/api/commands/delete-selection.md @@ -1,3 +1,5 @@ # deleteSelection - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/api/commands/enter.md b/docs/src/docPages/api/commands/enter.md index 9fd9fd52..c8106223 100644 --- a/docs/src/docPages/api/commands/enter.md +++ b/docs/src/docPages/api/commands/enter.md @@ -1,3 +1,5 @@ # enter - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/api/commands/exit-code.md b/docs/src/docPages/api/commands/exit-code.md index 4ce401ed..26daec4e 100644 --- a/docs/src/docPages/api/commands/exit-code.md +++ b/docs/src/docPages/api/commands/exit-code.md @@ -1,3 +1,5 @@ # exitCode - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/api/commands/insert-content-at.md b/docs/src/docPages/api/commands/insert-content-at.md index 2335641a..bf2085c1 100644 --- a/docs/src/docPages/api/commands/insert-content-at.md +++ b/docs/src/docPages/api/commands/insert-content-at.md @@ -1,3 +1,5 @@ # insertContentAt - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/api/commands/join-backward.md b/docs/src/docPages/api/commands/join-backward.md index c78939a9..27c7374d 100644 --- a/docs/src/docPages/api/commands/join-backward.md +++ b/docs/src/docPages/api/commands/join-backward.md @@ -1,3 +1,5 @@ # joinBackward - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/api/commands/join-forward.md b/docs/src/docPages/api/commands/join-forward.md index 5a4fe000..17814a0f 100644 --- a/docs/src/docPages/api/commands/join-forward.md +++ b/docs/src/docPages/api/commands/join-forward.md @@ -1,5 +1,7 @@ # joinForward - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: https://prosemirror.net/docs/ref/#commands.joinForward diff --git a/docs/src/docPages/api/commands/keyboard-shortcut.md b/docs/src/docPages/api/commands/keyboard-shortcut.md index 73896b9b..ad3904ed 100644 --- a/docs/src/docPages/api/commands/keyboard-shortcut.md +++ b/docs/src/docPages/api/commands/keyboard-shortcut.md @@ -1,3 +1,5 @@ # keyboardShortcut - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/api/commands/lift-empty-block.md b/docs/src/docPages/api/commands/lift-empty-block.md index 461fbe00..7529c5e8 100644 --- a/docs/src/docPages/api/commands/lift-empty-block.md +++ b/docs/src/docPages/api/commands/lift-empty-block.md @@ -1,3 +1,5 @@ # liftEmptyBlock - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/api/commands/lift-list-item.md b/docs/src/docPages/api/commands/lift-list-item.md index 4569a296..2a745abd 100644 --- a/docs/src/docPages/api/commands/lift-list-item.md +++ b/docs/src/docPages/api/commands/lift-list-item.md @@ -1,3 +1,5 @@ # liftListItem - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/api/commands/lift.md b/docs/src/docPages/api/commands/lift.md index 2cb96c17..be186c95 100644 --- a/docs/src/docPages/api/commands/lift.md +++ b/docs/src/docPages/api/commands/lift.md @@ -1,3 +1,5 @@ # lift - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/api/commands/newline-in-code.md b/docs/src/docPages/api/commands/newline-in-code.md index 867bd8e6..4233e969 100644 --- a/docs/src/docPages/api/commands/newline-in-code.md +++ b/docs/src/docPages/api/commands/newline-in-code.md @@ -1,3 +1,5 @@ # newlineInCode - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/api/commands/reset-attributes.md b/docs/src/docPages/api/commands/reset-attributes.md index 77b1fcb6..9239cd24 100644 --- a/docs/src/docPages/api/commands/reset-attributes.md +++ b/docs/src/docPages/api/commands/reset-attributes.md @@ -1,3 +1,5 @@ # resetAttributes - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/api/commands/scroll-into-view.md b/docs/src/docPages/api/commands/scroll-into-view.md index 4717f41e..8aef1734 100644 --- a/docs/src/docPages/api/commands/scroll-into-view.md +++ b/docs/src/docPages/api/commands/scroll-into-view.md @@ -1,3 +1,5 @@ # scrollIntoView - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/api/commands/select-node-backward.md b/docs/src/docPages/api/commands/select-node-backward.md index 0d93e54d..54d227e1 100644 --- a/docs/src/docPages/api/commands/select-node-backward.md +++ b/docs/src/docPages/api/commands/select-node-backward.md @@ -1,3 +1,5 @@ # selectNodeBackward - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/api/commands/select-node-forward.md b/docs/src/docPages/api/commands/select-node-forward.md index bce22349..3ea76caf 100644 --- a/docs/src/docPages/api/commands/select-node-forward.md +++ b/docs/src/docPages/api/commands/select-node-forward.md @@ -1,3 +1,5 @@ # selectNodeForward - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/api/commands/select-parent-node.md b/docs/src/docPages/api/commands/select-parent-node.md index 8452a48f..6d119b32 100644 --- a/docs/src/docPages/api/commands/select-parent-node.md +++ b/docs/src/docPages/api/commands/select-parent-node.md @@ -1,3 +1,5 @@ # selectParentNode - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/api/commands/set-mark.md b/docs/src/docPages/api/commands/set-mark.md index bf97b1b1..743567d2 100644 --- a/docs/src/docPages/api/commands/set-mark.md +++ b/docs/src/docPages/api/commands/set-mark.md @@ -1,3 +1,5 @@ # setMark - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/api/commands/set-node-selection.md b/docs/src/docPages/api/commands/set-node-selection.md index 2f7b02d8..e0102a98 100644 --- a/docs/src/docPages/api/commands/set-node-selection.md +++ b/docs/src/docPages/api/commands/set-node-selection.md @@ -1,3 +1,5 @@ # setNodeSelection - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/api/commands/set-node.md b/docs/src/docPages/api/commands/set-node.md index ce5369a4..d480c44b 100644 --- a/docs/src/docPages/api/commands/set-node.md +++ b/docs/src/docPages/api/commands/set-node.md @@ -1,3 +1,5 @@ # setNode - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/api/commands/sink-list-item.md b/docs/src/docPages/api/commands/sink-list-item.md index 73f4e995..e09bae63 100644 --- a/docs/src/docPages/api/commands/sink-list-item.md +++ b/docs/src/docPages/api/commands/sink-list-item.md @@ -1,3 +1,5 @@ # sinkListItem - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/api/commands/split-block.md b/docs/src/docPages/api/commands/split-block.md index 64d50c56..c2e919d6 100644 --- a/docs/src/docPages/api/commands/split-block.md +++ b/docs/src/docPages/api/commands/split-block.md @@ -1,3 +1,5 @@ # splitBlock - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/api/commands/split-list-item.md b/docs/src/docPages/api/commands/split-list-item.md index 989761bf..409b4bd7 100644 --- a/docs/src/docPages/api/commands/split-list-item.md +++ b/docs/src/docPages/api/commands/split-list-item.md @@ -1,3 +1,5 @@ # splitListItem - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/api/commands/toggle-list.md b/docs/src/docPages/api/commands/toggle-list.md index 52256ca6..d7f1d461 100644 --- a/docs/src/docPages/api/commands/toggle-list.md +++ b/docs/src/docPages/api/commands/toggle-list.md @@ -1,3 +1,5 @@ # toggleList - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/api/commands/toggle-mark.md b/docs/src/docPages/api/commands/toggle-mark.md index 72485f79..ca3758d8 100644 --- a/docs/src/docPages/api/commands/toggle-mark.md +++ b/docs/src/docPages/api/commands/toggle-mark.md @@ -1,3 +1,5 @@ # toggleMark - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/api/commands/toggle-node.md b/docs/src/docPages/api/commands/toggle-node.md index 630932ef..61801cc6 100644 --- a/docs/src/docPages/api/commands/toggle-node.md +++ b/docs/src/docPages/api/commands/toggle-node.md @@ -1,3 +1,5 @@ # toggleNode - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/api/commands/toggle-wrap.md b/docs/src/docPages/api/commands/toggle-wrap.md index 20a72199..693c249b 100644 --- a/docs/src/docPages/api/commands/toggle-wrap.md +++ b/docs/src/docPages/api/commands/toggle-wrap.md @@ -1,3 +1,5 @@ # toggleWrap - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/api/commands/undo-input-rule.md b/docs/src/docPages/api/commands/undo-input-rule.md index 27d907ca..9932ab83 100644 --- a/docs/src/docPages/api/commands/undo-input-rule.md +++ b/docs/src/docPages/api/commands/undo-input-rule.md @@ -1,3 +1,5 @@ # undoInputRule - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/api/commands/unset-all-marks.md b/docs/src/docPages/api/commands/unset-all-marks.md index 62a007c0..08e37be3 100644 --- a/docs/src/docPages/api/commands/unset-all-marks.md +++ b/docs/src/docPages/api/commands/unset-all-marks.md @@ -1,3 +1,5 @@ # unsetAllMarks - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/api/commands/unset-mark.md b/docs/src/docPages/api/commands/unset-mark.md index aafa4f73..375eebf5 100644 --- a/docs/src/docPages/api/commands/unset-mark.md +++ b/docs/src/docPages/api/commands/unset-mark.md @@ -1,3 +1,5 @@ # unsetMark - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/api/commands/wrap-in-list.md b/docs/src/docPages/api/commands/wrap-in-list.md index a3b7eeae..409fb2ef 100644 --- a/docs/src/docPages/api/commands/wrap-in-list.md +++ b/docs/src/docPages/api/commands/wrap-in-list.md @@ -1,3 +1,5 @@ # wrapInList - +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) +::: diff --git a/docs/src/docPages/changelog.md b/docs/src/docPages/changelog.md index 45ab75e5..29f90eb0 100644 --- a/docs/src/docPages/changelog.md +++ b/docs/src/docPages/changelog.md @@ -4,16 +4,6 @@ tableOfContents: true # Changelog -## toc - -:::pro Help us fill this page! -A well-written changelog needs attention to detail, a great understanding of the project and time to write. - -Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! With nearly 300 sponsors we are half way there already. - -Join them and become a sponsor! Enable us to put more time into open source and we’ll fill this page and keep it up to date for you. - --- - -[Become a sponsor on GitHub →](https://github.com/sponsors/ueberdosis) +:::warning +Oops, we didn’t find time to fill this page. Writing documentation needs attention to detail, a great understanding of the project and time to write. Though tiptap is used by thousands of developers all around the world, it’s still a side project for us. Let’s change that and make open source our full-time job! [Become a sponsor!](https://github.com/sponsors/ueberdosis) ::: From 63d8e844517a659c999001fd4b38d59633fd35f0 Mon Sep 17 00:00:00 2001 From: Hans Pagel Date: Thu, 16 Sep 2021 16:11:03 +0200 Subject: [PATCH 3/9] docs: remove toc heading --- docs/src/docPages/api/commands.md | 2 -- docs/src/docPages/api/editor.md | 2 -- docs/src/docPages/api/events.md | 2 -- docs/src/docPages/api/extensions.md | 2 -- docs/src/docPages/api/keyboard-shortcuts.md | 2 -- docs/src/docPages/api/marks.md | 2 -- docs/src/docPages/api/nodes.md | 2 -- docs/src/docPages/api/schema.md | 2 -- docs/src/docPages/examples/collaborative-editing.md | 2 -- docs/src/docPages/guide/accessibility.md | 2 -- docs/src/docPages/guide/collaborative-editing.md | 2 -- docs/src/docPages/guide/configuration.md | 2 -- docs/src/docPages/guide/custom-extensions.md | 2 -- docs/src/docPages/guide/extend-extensions.md | 2 -- docs/src/docPages/guide/menus.md | 2 -- docs/src/docPages/guide/node-views.md | 2 -- docs/src/docPages/guide/node-views/examples.md | 2 -- docs/src/docPages/guide/node-views/js.md | 2 -- docs/src/docPages/guide/node-views/react.md | 2 -- docs/src/docPages/guide/node-views/vue.md | 2 -- docs/src/docPages/guide/output.md | 2 -- docs/src/docPages/guide/styling.md | 2 -- docs/src/docPages/guide/typescript.md | 2 -- docs/src/docPages/impressum.md | 2 -- docs/src/docPages/installation.md | 2 -- docs/src/docPages/installation/alpine.md | 2 -- docs/src/docPages/installation/livewire.md | 2 -- docs/src/docPages/installation/nuxt.md | 2 -- docs/src/docPages/installation/react.md | 2 -- docs/src/docPages/installation/svelte.md | 2 -- docs/src/docPages/installation/vue2.md | 2 -- docs/src/docPages/installation/vue3.md | 2 -- docs/src/docPages/introduction.md | 2 -- docs/src/docPages/overview/contributing.md | 2 -- docs/src/docPages/overview/upgrade-guide.md | 2 -- docs/src/docPages/privacy-policy.md | 2 -- docs/src/docPages/sponsor.md | 2 -- 37 files changed, 74 deletions(-) diff --git a/docs/src/docPages/api/commands.md b/docs/src/docPages/api/commands.md index 7d471916..fd7ae0fe 100644 --- a/docs/src/docPages/api/commands.md +++ b/docs/src/docPages/api/commands.md @@ -4,8 +4,6 @@ tableOfContents: true # Commands -## toc - ## Introduction The editor provides a ton of commands to programmatically add or change content or alter the selection. If you want to build your own editor you definitely want to learn more about them. diff --git a/docs/src/docPages/api/editor.md b/docs/src/docPages/api/editor.md index 057cde27..5dac22d4 100644 --- a/docs/src/docPages/api/editor.md +++ b/docs/src/docPages/api/editor.md @@ -4,8 +4,6 @@ tableOfContents: true # Editor -## toc - ## Introduction This class is a central building block of tiptap. It does most of the heavy lifting of creating a working [ProseMirror](https://ProseMirror.net/) editor such as creating the [`EditorView`](https://ProseMirror.net/docs/ref/#view.EditorView), setting the initial [`EditorState`](https://ProseMirror.net/docs/ref/#state.Editor_State) and so on. diff --git a/docs/src/docPages/api/events.md b/docs/src/docPages/api/events.md index bfba5fa3..f09c5b5a 100644 --- a/docs/src/docPages/api/events.md +++ b/docs/src/docPages/api/events.md @@ -4,8 +4,6 @@ tableOfContents: true # Events -## toc - ## Introduction The editor fires a few different events that you can hook into. Let’s have a look at all the available events first: diff --git a/docs/src/docPages/api/extensions.md b/docs/src/docPages/api/extensions.md index facc0e6f..2d5b318d 100644 --- a/docs/src/docPages/api/extensions.md +++ b/docs/src/docPages/api/extensions.md @@ -4,8 +4,6 @@ tableOfContents: true # Extensions -## toc - ## Introduction Extensions add new capabilities to tiptap and you’ll read the word extension here very often. Actually, there are literal Extensions. Those can’t add to the schema, but can add functionality or change the behaviour of the editor. diff --git a/docs/src/docPages/api/keyboard-shortcuts.md b/docs/src/docPages/api/keyboard-shortcuts.md index 44e72288..5550efcf 100644 --- a/docs/src/docPages/api/keyboard-shortcuts.md +++ b/docs/src/docPages/api/keyboard-shortcuts.md @@ -4,8 +4,6 @@ tableOfContents: true # Keyboard Shortcuts -## toc - ## Introduction tiptap comes with sensible keyboard shortcut defaults. Depending on what you want to use it for, you’ll probably want to change those keyboard shortcuts to your liking. Let’s have a look at what we defined for you, and show you how to change it then! diff --git a/docs/src/docPages/api/marks.md b/docs/src/docPages/api/marks.md index 35faf17b..a29788a3 100644 --- a/docs/src/docPages/api/marks.md +++ b/docs/src/docPages/api/marks.md @@ -4,8 +4,6 @@ tableOfContents: true # Marks -## toc - ## Introduction One or multiple marks can be applied to [nodes](/api/nodes), for example to add inline formatting like bold and italic, or other additional information. diff --git a/docs/src/docPages/api/nodes.md b/docs/src/docPages/api/nodes.md index f818658c..694e86d4 100644 --- a/docs/src/docPages/api/nodes.md +++ b/docs/src/docPages/api/nodes.md @@ -4,8 +4,6 @@ tableOfContents: true # Nodes -## toc - ## Introduction If you think of the document as a tree, then nodes are just a type of content in that tree. Examples of nodes are paragraphs, headings, or code blocks. But nodes don’t have to be blocks. They can also be rendered inline with the text, for example for **@mentions**. diff --git a/docs/src/docPages/api/schema.md b/docs/src/docPages/api/schema.md index 2db556e7..815ee622 100644 --- a/docs/src/docPages/api/schema.md +++ b/docs/src/docPages/api/schema.md @@ -4,8 +4,6 @@ tableOfContents: true # Schema -## toc - ## Introduction Unlike many other editors, tiptap is based on a [schema](https://prosemirror.net/docs/guide/#schema) that defines how your content is structured. That enables you to define the kind of nodes that may occur in the document, its attributes and the way they can be nested. diff --git a/docs/src/docPages/examples/collaborative-editing.md b/docs/src/docPages/examples/collaborative-editing.md index 4851c476..6118c2b7 100644 --- a/docs/src/docPages/examples/collaborative-editing.md +++ b/docs/src/docPages/examples/collaborative-editing.md @@ -8,8 +8,6 @@ tableOfContents: true Using the collaborative editing commercially? [Become a sponsor](/sponsor) to fund its development! ::: -## toc - ## Introduction This example shows how you can use tiptap to let multiple users collaborate in the same document in real-time. diff --git a/docs/src/docPages/guide/accessibility.md b/docs/src/docPages/guide/accessibility.md index 65e9e7de..ac556054 100644 --- a/docs/src/docPages/guide/accessibility.md +++ b/docs/src/docPages/guide/accessibility.md @@ -8,8 +8,6 @@ tableOfContents: true We need your support to maintain, update, support and develop tiptap. If you’re waiting for progress here, [become a sponsor and fund our work](/sponsor). ::: -## toc - ## Introduction We strive to make tiptap accessible to everyone, but to be honest, there’s not much work done now. From our current understanding, that’s what needs to be done: diff --git a/docs/src/docPages/guide/collaborative-editing.md b/docs/src/docPages/guide/collaborative-editing.md index 77dcef39..aeb207c3 100644 --- a/docs/src/docPages/guide/collaborative-editing.md +++ b/docs/src/docPages/guide/collaborative-editing.md @@ -4,8 +4,6 @@ tableOfContents: true # Collaborative editing -## toc - ## Introduction Real-time collaboration, syncing between different devices and working offline used to be hard. We provide everything you need to keep everything in sync, conflict-free with the power of [Y.js](https://github.com/yjs/yjs). The following guide explains all things to take into account when you consider to make tiptap collaborative. Don’t worry, a production-grade setup doesn’t require much code. diff --git a/docs/src/docPages/guide/configuration.md b/docs/src/docPages/guide/configuration.md index 3f1249ed..58a23163 100644 --- a/docs/src/docPages/guide/configuration.md +++ b/docs/src/docPages/guide/configuration.md @@ -4,8 +4,6 @@ tableOfContents: true # Configuration -## toc - ## Introduction For most cases it’s enough to say where tiptap should be rendered (`element`), what functionalities you want to enable (`extensions`) and what the initial document should be (`content`). diff --git a/docs/src/docPages/guide/custom-extensions.md b/docs/src/docPages/guide/custom-extensions.md index 77f70dac..99b9dccb 100644 --- a/docs/src/docPages/guide/custom-extensions.md +++ b/docs/src/docPages/guide/custom-extensions.md @@ -4,8 +4,6 @@ tableOfContents: true # Custom extensions -## toc - ## Introduction One of the strengths of tiptap is its extendability. You don’t depend on the provided extensions, it is intended to extend the editor to your liking. diff --git a/docs/src/docPages/guide/extend-extensions.md b/docs/src/docPages/guide/extend-extensions.md index 57fd29a9..aed0d206 100644 --- a/docs/src/docPages/guide/extend-extensions.md +++ b/docs/src/docPages/guide/extend-extensions.md @@ -4,5 +4,3 @@ tableOfContents: true # Overwrite & extend -## toc - diff --git a/docs/src/docPages/guide/menus.md b/docs/src/docPages/guide/menus.md index 02d1a158..2d60ab71 100644 --- a/docs/src/docPages/guide/menus.md +++ b/docs/src/docPages/guide/menus.md @@ -4,8 +4,6 @@ tableOfContents: true # Create menus -## toc - ## Introduction tiptap comes very raw, but that’s a good thing. You have full control about the appearance of it. diff --git a/docs/src/docPages/guide/node-views.md b/docs/src/docPages/guide/node-views.md index 0d5df895..0108c043 100644 --- a/docs/src/docPages/guide/node-views.md +++ b/docs/src/docPages/guide/node-views.md @@ -4,8 +4,6 @@ tableOfContents: true # Interactive node views -## toc - ## Introduction Node views are the best thing since sliced bread, at least if you are a fan of customization (and bread). With node views you can add interactive nodes to your editor. That can literally be everything. If you can write it in JavaScript, you can use it in your editor. diff --git a/docs/src/docPages/guide/node-views/examples.md b/docs/src/docPages/guide/node-views/examples.md index 97951c2c..a5e96c39 100644 --- a/docs/src/docPages/guide/node-views/examples.md +++ b/docs/src/docPages/guide/node-views/examples.md @@ -4,8 +4,6 @@ tableOfContents: true # Examples -## toc - ## Introduction Node views enable you to fully customize your nodes. We are collecting a few different examples here. Feel free to copy them and start building on them. diff --git a/docs/src/docPages/guide/node-views/js.md b/docs/src/docPages/guide/node-views/js.md index 555b92e5..2f3d507a 100644 --- a/docs/src/docPages/guide/node-views/js.md +++ b/docs/src/docPages/guide/node-views/js.md @@ -4,8 +4,6 @@ tableOfContents: true # Node views with JavaScript -## toc - ## Introduction Using frameworks like Vue or React can feel too complex, if you’re used to work without those two. Good news: You can use Vanilla JavaScript in your node views. There is just a little bit you need to know, but let’s go through this one by one. diff --git a/docs/src/docPages/guide/node-views/react.md b/docs/src/docPages/guide/node-views/react.md index 0e6f9772..a97db5ce 100644 --- a/docs/src/docPages/guide/node-views/react.md +++ b/docs/src/docPages/guide/node-views/react.md @@ -4,8 +4,6 @@ tableOfContents: true # Node views with React -## toc - ## Introduction Using Vanilla JavaScript can feel complex if you are used to work in React. Good news: You can use regular React components in your node views, too. There is just a little bit you need to know, but let’s go through this one by one. diff --git a/docs/src/docPages/guide/node-views/vue.md b/docs/src/docPages/guide/node-views/vue.md index 04f155f3..b36e0309 100644 --- a/docs/src/docPages/guide/node-views/vue.md +++ b/docs/src/docPages/guide/node-views/vue.md @@ -4,8 +4,6 @@ tableOfContents: true # Node views with Vue -## toc - ## Introduction Using Vanilla JavaScript can feel complex if you are used to work in Vue. Good news: You can use regular Vue components in your node views, too. There is just a little bit you need to know, but let’s go through this one by one. diff --git a/docs/src/docPages/guide/output.md b/docs/src/docPages/guide/output.md index 936709f1..5b52a479 100644 --- a/docs/src/docPages/guide/output.md +++ b/docs/src/docPages/guide/output.md @@ -4,8 +4,6 @@ tableOfContents: true # Output -## toc - ## Introduction You can store your content as a JSON object or as a good old HTML string. Both work fine. And of course, you can pass both formats to the editor to restore your content. Here is an interactive example, that exports the content as HTML and JSON when the document is changed: diff --git a/docs/src/docPages/guide/styling.md b/docs/src/docPages/guide/styling.md index 6f27efdd..3fb51587 100644 --- a/docs/src/docPages/guide/styling.md +++ b/docs/src/docPages/guide/styling.md @@ -4,8 +4,6 @@ tableOfContents: true # Styling -## toc - ## Introduction tiptap is headless, that means there is no styling provided. That also means, you are in full control of how your editor looks. The following methods allow you to apply custom styles to the editor. diff --git a/docs/src/docPages/guide/typescript.md b/docs/src/docPages/guide/typescript.md index 9a29b7a0..2195fe4c 100644 --- a/docs/src/docPages/guide/typescript.md +++ b/docs/src/docPages/guide/typescript.md @@ -4,8 +4,6 @@ tableOfContents: true # Working with TypeScript -## toc - ## Introduction The whole tiptap is code base is written in TypeScript. If you haven’t heard of it or never used it, no worries. You don’t have to. diff --git a/docs/src/docPages/impressum.md b/docs/src/docPages/impressum.md index d4ccbc57..fd8ca708 100644 --- a/docs/src/docPages/impressum.md +++ b/docs/src/docPages/impressum.md @@ -4,8 +4,6 @@ tableOfContents: true # Impressum -## toc - ## Contact Information provided according to Sec. 5 German Telemedia Act (TMG) diff --git a/docs/src/docPages/installation.md b/docs/src/docPages/installation.md index d6850e57..ee4b6076 100644 --- a/docs/src/docPages/installation.md +++ b/docs/src/docPages/installation.md @@ -4,8 +4,6 @@ tableOfContents: true # Installation -## toc - ## Introduction tiptap is framework-agnostic and even works with Vanilla JavaScript (if that’s your thing). The following integration guides help you integrating tiptap in your JavaScript project. diff --git a/docs/src/docPages/installation/alpine.md b/docs/src/docPages/installation/alpine.md index 4bdc5c45..fb4beea2 100644 --- a/docs/src/docPages/installation/alpine.md +++ b/docs/src/docPages/installation/alpine.md @@ -5,8 +5,6 @@ tableOfContents: true # Alpine.js -## toc - ## Introduction The following guide describes how to integrate tiptap with your [Alpine.js](https://github.com/alpinejs/alpine) project. diff --git a/docs/src/docPages/installation/livewire.md b/docs/src/docPages/installation/livewire.md index 0ca1e6ae..14697513 100644 --- a/docs/src/docPages/installation/livewire.md +++ b/docs/src/docPages/installation/livewire.md @@ -5,8 +5,6 @@ tableOfContents: true # Livewire -## toc - ## Introduction The following guide describes how to integrate tiptap with your [Livewire](https://laravel-livewire.com/) project. diff --git a/docs/src/docPages/installation/nuxt.md b/docs/src/docPages/installation/nuxt.md index 258cf0b5..f2d9ee29 100644 --- a/docs/src/docPages/installation/nuxt.md +++ b/docs/src/docPages/installation/nuxt.md @@ -5,8 +5,6 @@ tableOfContents: true # Nuxt.js -## toc - ## Introduction The following guide describes how to integrate tiptap with your [Nuxt.js](https://nuxtjs.org/) project. diff --git a/docs/src/docPages/installation/react.md b/docs/src/docPages/installation/react.md index 814b8e16..a13eb896 100644 --- a/docs/src/docPages/installation/react.md +++ b/docs/src/docPages/installation/react.md @@ -5,8 +5,6 @@ tableOfContents: true # React -## toc - ## Introduction The following guide describes how to integrate tiptap with your [React](https://reactjs.org/) project. diff --git a/docs/src/docPages/installation/svelte.md b/docs/src/docPages/installation/svelte.md index 9a86d8e0..2551c643 100644 --- a/docs/src/docPages/installation/svelte.md +++ b/docs/src/docPages/installation/svelte.md @@ -5,8 +5,6 @@ tableOfContents: true # Svelte -## toc - ## Introduction The following guide describes how to integrate tiptap with your [SvelteKit](https://kit.svelte.dev/) project. diff --git a/docs/src/docPages/installation/vue2.md b/docs/src/docPages/installation/vue2.md index 822719cf..ca4ecedd 100644 --- a/docs/src/docPages/installation/vue2.md +++ b/docs/src/docPages/installation/vue2.md @@ -5,8 +5,6 @@ tableOfContents: true # Vue.js 2 -## toc - ## Introduction The following guide describes how to integrate tiptap with your [Vue](https://vuejs.org/) CLI project. diff --git a/docs/src/docPages/installation/vue3.md b/docs/src/docPages/installation/vue3.md index 1115212a..8f2c15ba 100644 --- a/docs/src/docPages/installation/vue3.md +++ b/docs/src/docPages/installation/vue3.md @@ -5,8 +5,6 @@ tableOfContents: true # Vue.js 3 -## toc - ## Introduction The following guide describes how to integrate tiptap with your [Vue](https://vuejs.org/) CLI project. diff --git a/docs/src/docPages/introduction.md b/docs/src/docPages/introduction.md index 761d809a..d4b01d6c 100644 --- a/docs/src/docPages/introduction.md +++ b/docs/src/docPages/introduction.md @@ -4,8 +4,6 @@ tableOfContents: true # Introduction -## toc - ## What’s tiptap? [![Version](https://img.shields.io/npm/v/@tiptap/core.svg?label=version)](https://www.npmjs.com/package/@tiptap/core) [![Downloads](https://img.shields.io/npm/dm/@tiptap/core.svg)](https://npmcharts.com/compare/@tiptap/core?minimal=true) diff --git a/docs/src/docPages/overview/contributing.md b/docs/src/docPages/overview/contributing.md index 635dade8..8dc714db 100644 --- a/docs/src/docPages/overview/contributing.md +++ b/docs/src/docPages/overview/contributing.md @@ -4,8 +4,6 @@ tableOfContents: true # Contributing -## toc - ## Introduction tiptap would be nothing without its lively community. Contributions have always been and will always be welcome. Here is a little bit you should know, before you send your contribution: diff --git a/docs/src/docPages/overview/upgrade-guide.md b/docs/src/docPages/overview/upgrade-guide.md index 2a0418ea..c928e654 100644 --- a/docs/src/docPages/overview/upgrade-guide.md +++ b/docs/src/docPages/overview/upgrade-guide.md @@ -4,8 +4,6 @@ tableOfContents: true # Upgrade Guide -## toc - ## Reasons to upgrade to tiptap 2.x Yes, it’s tedious work to upgrade your favorite text editor to a new API, but we made sure you’ve got enough reasons to upgrade to the newest version diff --git a/docs/src/docPages/privacy-policy.md b/docs/src/docPages/privacy-policy.md index 2de52bb3..1c541a3a 100644 --- a/docs/src/docPages/privacy-policy.md +++ b/docs/src/docPages/privacy-policy.md @@ -4,8 +4,6 @@ tableOfContents: true # Privacy Policy -## toc - ## Introduction We value your privacy and question everything that stores or processes your personal information. With that in mind, we still need a few external services to publish tiptap. diff --git a/docs/src/docPages/sponsor.md b/docs/src/docPages/sponsor.md index 8037346e..c58b9b95 100644 --- a/docs/src/docPages/sponsor.md +++ b/docs/src/docPages/sponsor.md @@ -4,8 +4,6 @@ tableOfContents: true # About the project -## toc - ## Introduction To deliver a top-notch developer experience and user experience, we put ~~hundreds~~ thousands of hours of unpaid work into tiptap. Your funding helps us to make this work more and more financially sustainable. This enables us to provide helpful support, maintain all our packages, keep everything up to date, and develop new features and extensions for tiptap. From b90166980366c20fe2ce935475a63350f9d01fa9 Mon Sep 17 00:00:00 2001 From: Hans Pagel Date: Thu, 16 Sep 2021 20:34:21 +0200 Subject: [PATCH 4/9] docs: improve the link mark example, fix #1277 --- demos/src/Marks/Link/Vue/index.vue | 29 +++++++++++++++++++++++++---- docs/src/docPages/api/marks/link.md | 7 +++++++ 2 files changed, 32 insertions(+), 4 deletions(-) diff --git a/demos/src/Marks/Link/Vue/index.vue b/demos/src/Marks/Link/Vue/index.vue index 7ba9b94b..e604e006 100644 --- a/demos/src/Marks/Link/Vue/index.vue +++ b/demos/src/Marks/Link/Vue/index.vue @@ -1,10 +1,10 @@