tiptap/docs/guide/node-views/examples.md
2021-10-18 18:01:47 +02:00

1.3 KiB
Raw Blame History

tableOfContents
true

Examples

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.

Keep in mind that those are just examples to get you started, not officially supported extensions. We dont have tests for them, and dont plan to maintain them with the same attention as we do with official extensions.

Drag handles

Drag handles arent that easy to add. We are still on the lookout whats the best way to add them. Official support will come at some point, but theres no timeline yet.

https://embed.tiptap.dev/preview/GuideNodeViews/DragHandle

Table of contents

This one loops through the editor content, gives all headings an ID and renders a Table of Contents with Vue.

https://embed.tiptap.dev/preview/GuideNodeViews/TableOfContents

Drawing in the editor

The drawing example shows a SVG that enables you to draw inside the editor.

https://embed.tiptap.dev/preview/Examples/Drawing

Its not working very well with the Collaboration extension. Its sending all data on every change, which can get pretty huge with Y.js. If you plan to use those two in combination, you need to improve it or your WebSocket backend will melt.