From 3b433501f1f3287aa9987f955097b9fe29f53b9b Mon Sep 17 00:00:00 2001 From: lumir Date: Thu, 13 Aug 2026 17:41:01 +0900 Subject: [PATCH] docs: describe default values for `frontmatter` and `math` options --- src/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/types.ts b/src/types.ts index 892da603..fcd77a5d 100644 --- a/src/types.ts +++ b/src/types.ts @@ -139,11 +139,13 @@ declare module "mdast" { export interface MarkdownLanguageOptions extends LanguageOptions { /** * The options for parsing frontmatter. + * @default false */ frontmatter?: false | "yaml" | "toml" | "json"; /** * The options for parsing math. + * @default false */ math?: boolean; }