From d434f3865a29d314d9ba92a3cf9ccfe3f4ff5e98 Mon Sep 17 00:00:00 2001 From: domnantas Date: Mon, 20 Sep 2021 23:52:06 +0300 Subject: [PATCH] docs: Add link to editor props section --- docs/guide/custom-extensions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/custom-extensions.md b/docs/guide/custom-extensions.md index 9386ffb8..2e5f6a71 100644 --- a/docs/guide/custom-extensions.md +++ b/docs/guide/custom-extensions.md @@ -499,7 +499,7 @@ const History = Extension.create({ ``` #### Access the ProseMirror API -To hook into events, for example a click, double click or when content is pasted, you can pass [event handlers](https://prosemirror.net/docs/ref/#view.EditorProps) to `editorProps` on the [editor](/api/editor). +To hook into events, for example a click, double click or when content is pasted, you can pass [event handlers](https://prosemirror.net/docs/ref/#view.EditorProps) to `editorProps` on the [editor](/api/editor#editor-props). Or you can add them to a tiptap extension like shown in the below example.