summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Michael Rienstra <mrienstra@gmail.com> 2022-10-26 12:32:49 -0700
committerGravatar GitHub <noreply@github.com> 2022-10-26 21:32:49 +0200
commit22ca6a6056c00dccccb71c382b68bcb1b3a87c43 (patch)
tree10b16c3a8b89e5b903652939b559800f1dd15b77
parentfc5cb2a51d7ac07b4d5955af4ccbaac07e3615b7 (diff)
downloadastro-22ca6a6056c00dccccb71c382b68bcb1b3a87c43.tar.gz
astro-22ca6a6056c00dccccb71c382b68bcb1b3a87c43.tar.zst
astro-22ca6a6056c00dccccb71c382b68bcb1b3a87c43.zip
docs: `extendDefaultPlugins` cross-linking (minor) (#5204)
-rw-r--r--packages/astro/src/@types/astro.ts4
1 files 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