From a45758642cfa91fd83460642696f878e1baf6c14 Mon Sep 17 00:00:00 2001 From: Ricardo Albear Date: Sun, 16 May 2021 15:22:24 +0100 Subject: [PATCH] Fix text-align extension url --- docs/src/docPages/guide/custom-extensions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/docPages/guide/custom-extensions.md b/docs/src/docPages/guide/custom-extensions.md index 278b8a7f6..6f67a98d9 100644 --- a/docs/src/docPages/guide/custom-extensions.md +++ b/docs/src/docPages/guide/custom-extensions.md @@ -553,7 +553,7 @@ const CustomMark = Mark.create({ ### Create an extension Extensions add new capabilities to tiptap and you’ll read the word extension here very often, even for nodes and marks. But there are literal extensions. Those can’t add to the schema (like marks and nodes do), but can add functionality or change the behaviour of the editor. -A good example to learn from is probably [`TextAlign`](/api/extension/text-align). +A good example to learn from is probably [`TextAlign`](/api/extensions/text-align). ```js import { Extension } from '@tiptap/core'