()
| 199 | return [renderTag, 0] |
| 200 | }, |
| 201 | addCommands () { |
| 202 | const commandName = `toggle${name[0].toUpperCase()}${name.slice(1)}` |
| 203 | |
| 204 | return { |
| 205 | [commandName]: () => ({ commands }) => commands.toggleMark(name) |
| 206 | } |
| 207 | }, |
| 208 | addKeyboardShortcuts () { |
| 209 | return { |
| 210 | [shortcuts]: () => this.editor.commands.toggleMark(name) |
nothing calls this directly
no outgoing calls
no test coverage detected