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

18 lines
369 B
Markdown

# 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
```js
editor.commands.setMark("bold", { class: 'bold-tag' })
```