1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-08-28 17:39:57 +02:00

Fix a few issues with the documentation (#3679)

* Fix a few issues with the documentation

* Add Kitemaker to the list of sites using Slate
This commit is contained in:
Kevin Simons
2020-05-13 17:56:24 +02:00
committed by GitHub
parent aabb9b50bd
commit 3c80c3e88b
5 changed files with 5 additions and 4 deletions

View File

@@ -107,7 +107,7 @@ But in certain cases, like for links, you might want to make them "inline" flowi
You can define which nodes are treated as inline nodes by overriding the `editor.isInline` function. (By default it always returns `false`.) Note that inline nodes cannot be the first or last child of a parent block, nor can it be next to another inline node in the children array. Slate will automatically space these with `{ text: '' }` children by default with [`normalizeNode`](https://docs.slatejs.org/concepts/10-normalizing#built-in-constraints).
Elements can either contain block elements as children. Or they can contain inline elements intermingled with text nodes as children. But elements **cannot** contain some children that are blocks and some that are inlines.
Elements can either contain block elements or inline elements intermingled with text nodes as children. But elements **cannot** contain some children that are blocks and some that are inlines.
## Voids

View File

@@ -11,7 +11,7 @@ const withImages = editor => {
const { isVoid } = editor
editor.isVoid = element => {
return element.type === 'image' ? true : isVoid(editor)
return element.type === 'image' ? true : isVoid(element)
}
return editor