From 1129c0acaf35fd02eee82e6fcb366efcbbbc962f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=A3=A8=EB=B0=80LuMir?= Date: Tue, 27 Jan 2026 23:33:06 +0900 Subject: [PATCH] feat: support Math in Markdown --- src/hooks/use-explorer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/use-explorer.ts b/src/hooks/use-explorer.ts index 6d5495d8..5f7ef38f 100644 --- a/src/hooks/use-explorer.ts +++ b/src/hooks/use-explorer.ts @@ -22,7 +22,7 @@ export type Version = Exclude | 17 | 2026; export type Language = "javascript" | "json" | "markdown" | "css" | "html"; export type JsonMode = "json" | "jsonc" | "json5"; export type MarkdownMode = "commonmark" | "gfm"; -export type MarkdownFrontmatter = "off" | "yaml" | "toml" | "json"; +export type MarkdownFrontmatter = "off" | "yaml" | "toml" | "json"; // TODO export type CssMode = "css"; export type TemplateEngineSyntax = "none" | "handlebars" | "twig" | "erb";