feat: Comment resolving (#7115)

This commit is contained in:
Tom Moor
2024-07-02 06:55:16 -04:00
committed by GitHub
parent f34557337d
commit 117c4f5009
38 changed files with 1126 additions and 291 deletions

View File

@@ -0,0 +1,20 @@
import { Attrs, MarkType } from "prosemirror-model";
import { Command } from "prosemirror-state";
/**
* A prosemirror command to create a mark at the current selection.
*
* @returns A prosemirror command.
*/
export const addMark =
(type: MarkType, attrs?: Attrs | null): Command =>
(state, dispatch) => {
dispatch?.(
state.tr.addMark(
state.selection.from,
state.selection.to,
type.create(attrs)
)
);
return true;
};