Path: blob/main/extensions/markdown-math/syntaxes/md-math-fence.tmLanguage.json
3291 views
{1"fileTypes": [],2"injectionSelector": "L:markup.fenced_code.block.markdown",3"patterns": [4{5"include": "#math-code-block"6}7],8"repository": {9"math-code-block": {10"begin": "(?<=[`~])math(\\s+[^`~]*)?$",11"end": "(^|\\G)(?=\\s*[`~]{3,}\\s*$)",12"patterns": [13{14"begin": "(^|\\G)(\\s*)(.*)",15"while": "(^|\\G)(?!\\s*([`~]{3,})\\s*$)",16"contentName": "meta.embedded.math.markdown",17"patterns": [18{19"include": "text.html.markdown.math#math"20}21]22}23]24}25},26"scopeName": "markdown.math.codeblock"27}282930