1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-08-31 02:49:56 +02:00

Add links from concepts/editor to Editor API Reference

This commit is contained in:
Sunny Hirai
2021-05-20 23:54:42 -07:00
parent 53324cb7ca
commit 438722df87

View File

@@ -86,6 +86,8 @@ editor.normalizeNode = entry => {
Whenever you override behaviors, be sure to call the existing functions as a fallback mechanism for the default behavior. Unless you really do want to completely remove the default behaviors \(which is rarely a good idea\).
> 🤖 For more info, check out the [Editor Instance Methods to Override API Reference](../api/nodes/editor.md#schema-specific-instance-methods-to-override)
## Helper Functions
The `Editor` interface, like all Slate interfaces, exposes helper functions that are useful when implementing certain behaviors. There are many, many editor-related helpers. For example:
@@ -111,3 +113,5 @@ for (const point of Editor.positions(editor)) {
// ...
}
```
> 🤖 For more info, check out the [Editor Static Methods API Reference](../api/nodes/editor.md#static-methods)