From 88f09479450a376ee49dc2a0b7b4ebc36792d07b Mon Sep 17 00:00:00 2001 From: Hans Pagel Date: Fri, 30 Oct 2020 16:19:46 +0100 Subject: [PATCH] add link --- docs/src/docPages/guide/build-custom-extensions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/docPages/guide/build-custom-extensions.md b/docs/src/docPages/guide/build-custom-extensions.md index 3fe9ce92..47d4a5f8 100644 --- a/docs/src/docPages/guide/build-custom-extensions.md +++ b/docs/src/docPages/guide/build-custom-extensions.md @@ -159,7 +159,7 @@ const CustomParagraph = Paragraph.extend({ ### Global Attributes Attributes can be applied to multiple extensions at once. That’s useful for text alignment, line height, color, font family, and other styling related attributes. -Take a closer look at the full source code of the [`TextAlign`](/api/extensions/text-align) extension to see a more complex example. But here is how it works in a nutshell: +Take a closer look at [the full source code](https://github.com/ueberdosis/tiptap-next/tree/main/packages/extension-text-align) of the [`TextAlign`](/api/extensions/text-align) extension to see a more complex example. But here is how it works in a nutshell: ```js import { createExtension } from '@tiptap/core'