From 438722df87087e967cf9a6c0ef6a4cff324eb050 Mon Sep 17 00:00:00 2001 From: Sunny Hirai Date: Thu, 20 May 2021 23:54:42 -0700 Subject: [PATCH] Add links from concepts/editor to Editor API Reference --- docs/concepts/07-editor.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/concepts/07-editor.md b/docs/concepts/07-editor.md index f0acdcf13..024d30774 100644 --- a/docs/concepts/07-editor.md +++ b/docs/concepts/07-editor.md @@ -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)