add basic collab implementation

This commit is contained in:
Philipp Kühn
2019-02-03 14:06:17 +01:00
parent 8a23c4c945
commit b23cdcba6b
6 changed files with 120 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
import { Extension } from 'tiptap'
import { collab } from 'prosemirror-collab'
export default class CollabExtension extends Extension {
get name() {
return 'collab'
}
get plugins() {
return [collab()]
}
}