https://github.com/kid-1912/tiptap-extension-trailing-node
Add a blank node after the node to solve the problem of not being able to append content.
https://github.com/kid-1912/tiptap-extension-trailing-node
blank extension insert tiptap
Last synced: 11 months ago
JSON representation
Add a blank node after the node to solve the problem of not being able to append content.
- Host: GitHub
- URL: https://github.com/kid-1912/tiptap-extension-trailing-node
- Owner: KID-1912
- Created: 2024-01-30T10:37:22.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-01-30T10:43:26.000Z (over 2 years ago)
- Last Synced: 2025-02-21T09:32:22.451Z (over 1 year ago)
- Topics: blank, extension, insert, tiptap
- Language: JavaScript
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# tiptap-extension-trailing-node
The extension adds an actual node to the tiptap content.
Add a blank node after the node to solve the problem of not being able to append content.
---
## Install
```shell
npm install tiptap-extension-trailing-node -S
```
## Usage
```js
import TrailingNode from "tiptap-extension-trailing-node";
const editor = new Editor({
element: document.querySelector(".editor"),
extensions: [StarterKit, TrailingNode],
});
```
## Relations
**tiptap-Trailing Node:** https://tiptap.dev/docs/editor/experiments/trailing-node
**tiptap-appmsg-editor:** https://github.com/KID-1912/tiptap-appmsg-editor