diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index 117a1e257..e57126180 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -563,7 +563,7 @@ export interface AstroUserConfig { * { * markdown: { * // Example: The default set of remark plugins used by Astro - * remarkPlugins: ['remark-code-titles', ['rehype-autolink-headings', { behavior: 'prepend' }]], + * remarkPlugins: ['remark-gfm', 'remark-smartypants'], * }, * }; * ``` @@ -582,7 +582,7 @@ export interface AstroUserConfig { * { * markdown: { * // Example: The default set of rehype plugins used by Astro - * rehypePlugins: ['rehype-slug', ['rehype-toc', { headings: ['h2', 'h3'] }], [addClasses, { 'h1,h2,h3': 'title' }]], + * rehypePlugins: [], * }, * }; * ```