From 20489d3b5c7c929aa8baa852cbb29fcd45bda44f Mon Sep 17 00:00:00 2001 From: Lovepreet Singh Date: Sun, 12 Jul 2026 10:38:22 +0530 Subject: [PATCH] fix(markdown): prevent angle brackets from auto-closing inside math blocks Fixes #272922 --- extensions/markdown-math/package.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/extensions/markdown-math/package.json b/extensions/markdown-math/package.json index 9fdbf63f45ff7b..1583c64dc47e98 100644 --- a/extensions/markdown-math/package.json +++ b/extensions/markdown-math/package.json @@ -44,6 +44,9 @@ ], "embeddedLanguages": { "meta.embedded.math.markdown": "latex" + }, + "tokenTypes": { + "meta.embedded.math.markdown": "string" } }, { @@ -55,6 +58,9 @@ "embeddedLanguages": { "meta.embedded.math.markdown": "latex", "punctuation.definition.math.end.markdown": "latex" + }, + "tokenTypes": { + "meta.embedded.math.markdown": "string" } }, { @@ -65,6 +71,9 @@ ], "embeddedLanguages": { "meta.embedded.math.markdown": "latex" + }, + "tokenTypes": { + "meta.embedded.math.markdown": "string" } } ],