dropdeck_slate-yjs
v3.1.1
Published
Yjs bindings for Slate.
Downloads
1
Readme
Slate Yjs
Fork of the slate-yjs
project, adding an optional normalizeRemoteEvents: (editor, fn)
option to the withYjs
plugin, to allow for custom handling of remote events, applied to the shared type. Specifically, this can be used to avoid remote events ending up in the editor's history; for example:
withYjs(
editor,
sharedType, {
// Remote events should clear the history stack!
normalizeRemoteEvents: (editor, fn) => {
HistoryEditor.withoutSaving(baseEditor, fn);
}
}
);
Depends on the resolution of this issue.