Type Alias RichTextFormatAction
RichTextFormatAction:
| "bold"
| "italic"
| "underline"
| "strikethrough"
| "paragraph"
| "heading1"
| "heading2"
| "heading3"
| "blockquote"
| "codeBlock"
| "unorderedList"
| "orderedList"
| "indent"
| "outdent"
| "alignLeft"
| "alignCenter"
| "alignRight"
| "alignJustify"
| "horizontalRule"
| "image"
| "link"
| "undo"
| "redo"
| "removeFormat"
Formatting actions the toolbar can expose.
Each value maps to a
document.execCommandcall or a custom handler inside the editor component.