From 22ca6a6056c00dccccb71c382b68bcb1b3a87c43 Mon Sep 17 00:00:00 2001 From: Michael Rienstra Date: Wed, 26 Oct 2022 12:32:49 -0700 Subject: [PATCH] docs: `extendDefaultPlugins` cross-linking (minor) (#5204) --- packages/astro/src/@types/astro.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index 6d41f9d49..86278b0b1 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -729,7 +729,7 @@ export interface AstroUserConfig { * Pass [remark plugins](https://github.com/remarkjs/remark) to customize how your Markdown is built. You can import and apply the plugin function (recommended), or pass the plugin name as a string. * * :::caution - * Providing a list of plugins will **remove** our default plugins. To preserve these defaults, see the `extendDefaultPlugins` flag. + * Providing a list of plugins will **remove** our default plugins. To preserve these defaults, see the [`extendDefaultPlugins`](#markdownextenddefaultplugins) flag. * ::: * * ```js @@ -750,7 +750,7 @@ export interface AstroUserConfig { * Pass [rehype plugins](https://github.com/remarkjs/remark-rehype) to customize how your Markdown's output HTML is processed. You can import and apply the plugin function (recommended), or pass the plugin name as a string. * * :::caution - * Providing a list of plugins will **remove** our default plugins. To preserve these defaults, see the `extendDefaultPlugins` flag. + * Providing a list of plugins will **remove** our default plugins. To preserve these defaults, see the [`extendDefaultPlugins`](#markdownextenddefaultplugins) flag. * ::: * * ```js