tiptap/docs/api/commands/set-mark.md
2022-06-08 12:15:59 +02:00

369 B

setMark

The setMark command will add a new mark at the current selection.

Parameters

typeOrName: string | MarkType

The type of a mark to add. Can be a string or a MarkType.

attributes: Record<string, any>

The attributes that should be applied to the mark. This is optional.

Usage

editor.commands.setMark("bold", { class: 'bold-tag' })