From 7db9211b98ac4ec303ed4aa7b365443322a60f58 Mon Sep 17 00:00:00 2001 From: Hans Pagel Date: Fri, 25 Sep 2020 22:37:44 +0200 Subject: [PATCH] update the commands page --- docs/src/docPages/api/commands.md | 29 +++++++++++++++++++---------- 1 file changed, 19 insertions(+), 10 deletions(-) diff --git a/docs/src/docPages/api/commands.md b/docs/src/docPages/api/commands.md index 62f9bf18..84081e70 100644 --- a/docs/src/docPages/api/commands.md +++ b/docs/src/docPages/api/commands.md @@ -17,20 +17,29 @@ editor.chain().focus().bold().run() | .setContent() | Replace the whole document with new content. | ### Nodes & Marks -| Command | Description | -| ------------------- | ------------------------------------------ | -| .removeMark() | Remove a mark in the current selection. | -| .removeMarks() | Remove all marks in the current selection. | -| .selectParentNode() | Select the parent node. | -| .toggleMark() | Toggle a mark on and off. | -| .toggleBlockType() | Toggle a node with another node. | -| .setBlockType() | Replace a given range with a node. | -| .updateMark() | Update a mark with new attributes. | +| Command | Description | +| ------------------- | ------------------------------------------------------ | +| .removeMark() | Remove a mark in the current selection. | +| .removeMarks() | Remove all marks in the current selection. | +| .selectParentNode() | Select the parent node. | +| .toggleMark() | Toggle a mark on and off. | +| .toggleBlockType() | Toggle a node with another node. | +| .setBlockType() | Replace a given range with a node. | +| .updateMark() | Update a mark with new attributes. | + +### Lists +| Command | Description | +| ------------------- | ------------------------------------------------------ | +| .liftListItem() | Lift the list item into a wrapping list. | +| .sinkListItem() | Sink the list item down into an inner list. | +| .splitListItem() | Splits a textblock of a list item into two list items. | +| .toggleList() | Toggle between different list styles. | ### Selection | Command | Description | | ------------------ | --------------------------------------- | +| .blur() | Blurs the editor. | | .deleteSelection() | Delete the selection, if there is one. | | .focus() | Focus the editor at the given position. | +| .scrollIntoView() | Scroll the selection into view. | | .selectAll() | Select the whole document. | -| .scrollIntoView() | … |