File tree 1 file changed +14
-0
lines changed
1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,20 @@ function CollaborativeEditor() {
35
35
}
36
36
```
37
37
38
+ For the editor, you can choose to use Tiptap or BlockNote.
39
+
40
+ - Tiptap is based on ProseMirror and saves you a lot of configuration compared
41
+ to using the ProseMirror editor directly. It has a rich ecosystem of
42
+ extensions, and is very customizable.
43
+ - BlockNote is based on Tiptap and has a nicer UI and experience out of the box,
44
+ at the cost of being harder to extend and customize for advanced usecases. If
45
+ you're looking for the easiest way to get all the fancy formatting options,
46
+ this is it.
47
+ - Unfortunately, even though they both are based on ProseMirror, the data model
48
+ differs, so it's not trivial to switch editors later on without migrating all
49
+ of the data, so you might experiment with both before launching publicly.
50
+
51
+ Features:
38
52
Features:
39
53
40
54
- Safely merges changes between clients via operational transformations (OT).
You can’t perform that action at this time.
0 commit comments