docs: update content

This commit is contained in:
Hans Pagel
2021-05-04 23:26:07 +02:00
parent f461a64717
commit 0c06ece8e9
3 changed files with 73 additions and 18 deletions

View File

@@ -56,18 +56,3 @@ const editor = new Editor({
Learn [more about custom extensions in our guide](/guide/extend-extensions).
### ProseMirror plugins
ProseMirror has a fantastic eco system with many amazing plugins. If you want to use one of them, you can register them with tiptap like that:
```js
import { history } from 'prosemirror-history'
const History = Extension.create({
addProseMirrorPlugins() {
return [
history(),
// …
]
},
})
```