From 233fee9c04ba5d9cbcda13a93f9f6d8ecd5794d8 Mon Sep 17 00:00:00 2001 From: Joseph Mawa <52580190+nibble0101@users.noreply.github.com> Date: Sat, 15 Jun 2024 18:41:13 +0300 Subject: [PATCH] Add config object to the remarkToc plugin in the astro config (#11087) Co-authored-by: Sarah Rainsberger --- packages/astro/src/@types/astro.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index 3b3ce671a0..ca887ac3a2 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -1417,7 +1417,7 @@ export interface AstroUserConfig { * import remarkToc from 'remark-toc'; * { * markdown: { - * remarkPlugins: [remarkToc] + * remarkPlugins: [ [remarkToc, { heading: "contents"} ] ] * } * } * ```