From 2472a344f05344f7d9d35a44dba43c74a981d947 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Ku=CC=88hn?= Date: Wed, 10 Feb 2021 20:30:28 +0100 Subject: [PATCH] remove registerCommand from docs --- docs/src/docPages/api/editor.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/src/docPages/api/editor.md b/docs/src/docPages/api/editor.md index 9c911367..755d821a 100644 --- a/docs/src/docPages/api/editor.md +++ b/docs/src/docPages/api/editor.md @@ -178,8 +178,6 @@ Don’t confuse methods with [commands](/api/commands), which are used to change | `isEditable()` | - | Returns whether the editor is editable. | | `isEmpty()` | - | Check if there is no content. | | `getCharacterCount()` | - | Get the number of characters for the current document. | -| `registerCommand()` | `name` The name of your command
`callback` The method of your command | Register a command. | -| `registerCommands()` | `commands` A list of commands | Register a list of commands. | | `registerPlugin()` | `plugin` A ProseMirror plugin
`handlePlugins` Control how to merge the plugin into the existing plugins. | Register a ProseMirror plugin. | | `setOptions()` | `options` A list of options | Update editor options. | | `unregisterPlugin()` | `name` The plugins name | Unregister a ProseMirror plugin. |