Path: blob/main/extensions/markdown-math/syntaxes/md-math-inline.tmLanguage.json
3291 views
{1"fileTypes": [],2"injectionSelector": "L:meta.paragraph.markdown - (comment, string, markup.math.inline.markdown, markup.fenced_code.block.markdown)",3"patterns": [4{5"include": "#math_inline_double"6},7{8"include": "#math_inline_single"9},10{11"include": "#math_inline_block"12}13],14"repository": {15"math_inline_single": {16"name": "markup.math.inline.markdown",17"match": "(?<=\\s|\\W|^)(?<!\\$)(\\$)(.+?)(\\$)(?!\\$)(?=\\s|\\W|$)",18"captures": {19"1": {20"name": "punctuation.definition.math.begin.markdown"21},22"2": {23"name": "meta.embedded.math.markdown",24"patterns": [25{26"include": "text.html.markdown.math#math"27}28]29},30"3": {31"name": "punctuation.definition.math.end.markdown"32}33}34},35"math_inline_double": {36"name": "markup.math.inline.markdown",37"match": "(?<=\\s|\\W|^)(?<!\\$)(\\$\\$)(.+?)(\\$\\$)(?!\\$)(?=\\s|\\W|$)",38"captures": {39"1": {40"name": "punctuation.definition.math.begin.markdown"41},42"2": {43"name": "meta.embedded.math.markdown",44"patterns": [45{46"include": "text.html.markdown.math#math"47}48]49},50"3": {51"name": "punctuation.definition.math.end.markdown"52}53}54},55"math_inline_block": {56"name": "markup.math.inline.markdown",57"contentName": "meta.embedded.math.markdown",58"begin": "(?<=\\s|^)(\\${2})",59"beginCaptures": {60"2": {61"name": "punctuation.definition.math.begin.markdown"62}63},64"end": "(\\${2})(?=\\s|$)",65"endCaptures": {66"2": {67"name": "punctuation.definition.math.end.markdown"68}69},70"patterns": [71{72"include": "text.html.markdown.math#math"73}74]75}76},77"scopeName": "markdown.math.inline"78}798081