doc.yeswiki.pro/node_modules/shiki/languages/mdx.tmLanguage.json

5627 lines
193 KiB
JSON
Raw Normal View History

2023-05-20 19:37:42 +03:00
{
"name": "mdx",
"uuid": "fe65e2cd-7c73-4a27-8b5e-5902893626aa",
"fileTypes": ["mdx"],
"patterns": [
{
"include": "#markdown-frontmatter"
},
{
"include": "#markdown-sections"
}
],
"repository": {
"markdown-frontmatter": {
"patterns": [
{
"include": "#extension-toml"
},
{
"include": "#extension-yaml"
}
]
},
"markdown-sections": {
"patterns": [
{
"include": "#commonmark-block-quote"
},
{
"include": "#commonmark-code-fenced"
},
{
"include": "#extension-gfm-footnote-definition"
},
{
"include": "#commonmark-definition"
},
{
"include": "#commonmark-heading-atx"
},
{
"include": "#commonmark-thematic-break"
},
{
"include": "#commonmark-heading-setext"
},
{
"include": "#commonmark-list-item"
},
{
"include": "#extension-gfm-table"
},
{
"include": "#extension-math-flow"
},
{
"include": "#extension-mdx-esm"
},
{
"include": "#extension-mdx-expression-flow"
},
{
"include": "#extension-mdx-jsx-flow"
},
{
"include": "#commonmark-paragraph"
}
]
},
"markdown-string": {
"patterns": [
{
"include": "#commonmark-character-escape"
},
{
"include": "#commonmark-character-reference"
}
]
},
"markdown-text": {
"patterns": [
{
"include": "#commonmark-attention"
},
{
"include": "#commonmark-character-escape"
},
{
"include": "#commonmark-character-reference"
},
{
"include": "#commonmark-code-text"
},
{
"include": "#commonmark-hard-break-trailing"
},
{
"include": "#commonmark-hard-break-escape"
},
{
"include": "#commonmark-label-end"
},
{
"include": "#extension-gfm-footnote-call"
},
{
"include": "#commonmark-label-start"
},
{
"include": "#extension-gfm-autolink-literal"
},
{
"include": "#extension-gfm-strikethrough"
},
{
"include": "#extension-github-gemoji"
},
{
"include": "#extension-github-mention"
},
{
"include": "#extension-github-reference"
},
{
"include": "#extension-math-text"
},
{
"include": "#extension-mdx-expression-text"
},
{
"include": "#extension-mdx-jsx-text"
}
]
},
"commonmark-attention": {
"patterns": [
{
"match": "(?<=\\S)\\*{3,}|\\*{3,}(?=\\S)",
"name": "string.other.strong.emphasis.asterisk.mdx"
},
{
"match": "(?<=[\\p{L}\\p{N}])_{3,}(?![\\p{L}\\p{N}])|(?<=\\p{P})_{3,}|(?<![\\p{L}\\p{N}]|\\p{P})_{3,}(?!\\s)",
"name": "string.other.strong.emphasis.underscore.mdx"
},
{
"match": "(?<=\\S)\\*{2}|\\*{2}(?=\\S)",
"name": "string.other.strong.asterisk.mdx"
},
{
"match": "(?<=[\\p{L}\\p{N}])_{2}(?![\\p{L}\\p{N}])|(?<=\\p{P})_{2}|(?<![\\p{L}\\p{N}]|\\p{P})_{2}(?!\\s)",
"name": "string.other.strong.underscore.mdx"
},
{
"match": "(?<=\\S)\\*|\\*(?=\\S)",
"name": "string.other.emphasis.asterisk.mdx"
},
{
"match": "(?<=[\\p{L}\\p{N}])_(?![\\p{L}\\p{N}])|(?<=\\p{P})_|(?<![\\p{L}\\p{N}]|\\p{P})_(?!\\s)",
"name": "string.other.emphasis.underscore.mdx"
}
]
},
"commonmark-block-quote": {
"begin": "(?:^|\\G)[\\t ]*(>)[ ]?",
"beginCaptures": {
"0": {
"name": "markup.quote.mdx"
},
"1": {
"name": "punctuation.definition.quote.begin.mdx"
}
},
"patterns": [
{
"include": "#markdown-sections"
}
],
"while": "(?:^|\\G)[\\t ]*(>)[ ]?",
"whileCaptures": {
"0": {
"name": "markup.quote.mdx"
},
"1": {
"name": "punctuation.definition.quote.begin.mdx"
}
}
},
"commonmark-character-escape": {
"match": "\\\\(?:[!\"#$%&'()*+,\\-.\\/:;<=>?@\\[\\\\\\]^_`{|}~])",
"name": "constant.language.character-escape.mdx"
},
"commonmark-character-reference": {
"patterns": [
{
"include": "#whatwg-html-data-character-reference-named-terminated"
},
{
"match": "(&)(#)([Xx])([0-9A-Fa-f]{1,6})(;)",
"name": "constant.language.character-reference.numeric.hexadecimal.html",
"captures": {
"1": {
"name": "punctuation.definition.character-reference.begin.html"
},
"2": {
"name": "punctuation.definition.character-reference.numeric.html"
},
"3": {
"name": "punctuation.definition.character-reference.numeric.hexadecimal.html"
},
"4": {
"name": "constant.numeric.integer.hexadecimal.html"
},
"5": {
"name": "punctuation.definition.character-reference.end.html"
}
}
},
{
"match": "(&)(#)([0-9]{1,7})(;)",
"name": "constant.language.character-reference.numeric.decimal.html",
"captures": {
"1": {
"name": "punctuation.definition.character-reference.begin.html"
},
"2": {
"name": "punctuation.definition.character-reference.numeric.html"
},
"3": {
"name": "constant.numeric.integer.decimal.html"
},
"4": {
"name": "punctuation.definition.character-reference.end.html"
}
}
}
]
},
"commonmark-code-fenced": {
"patterns": [
{
"include": "#commonmark-code-fenced-apib"
},
{
"include": "#commonmark-code-fenced-asciidoc"
},
{
"include": "#commonmark-code-fenced-c"
},
{
"include": "#commonmark-code-fenced-clojure"
},
{
"include": "#commonmark-code-fenced-coffee"
},
{
"include": "#commonmark-code-fenced-console"
},
{
"include": "#commonmark-code-fenced-cpp"
},
{
"include": "#commonmark-code-fenced-cs"
},
{
"include": "#commonmark-code-fenced-css"
},
{
"include": "#commonmark-code-fenced-diff"
},
{
"include": "#commonmark-code-fenced-dockerfile"
},
{
"include": "#commonmark-code-fenced-elixir"
},
{
"include": "#commonmark-code-fenced-elm"
},
{
"include": "#commonmark-code-fenced-erlang"
},
{
"include": "#commonmark-code-fenced-gitconfig"
},
{
"include": "#commonmark-code-fenced-go"
},
{
"include": "#commonmark-code-fenced-graphql"
},
{
"include": "#commonmark-code-fenced-haskell"
},
{
"include": "#commonmark-code-fenced-html"
},
{
"include": "#commonmark-code-fenced-ini"
},
{
"include": "#commonmark-code-fenced-java"
},
{
"include": "#commonmark-code-fenced-js"
},
{
"include": "#commonmark-code-fenced-json"
},
{
"include": "#commonmark-code-fenced-julia"
},
{
"include": "#commonmark-code-fenced-kotlin"
},
{
"include": "#commonmark-code-fenced-less"
},
{
"include": "#commonmark-code-fenced-less"
},
{
"include": "#commonmark-code-fenced-lua"
},
{
"include": "#commonmark-code-fenced-makefile"
},
{
"include": "#commonmark-code-fenced-md"
},
{
"include": "#commonmark-code-fenced-mdx"
},
{
"include": "#commonmark-code-fenced-objc"
},
{
"include": "#commonmark-code-fenced-perl"
},
{
"include": "#commonmark-code-fenced-php"
},
{
"include": "#commonmark-code-fenced-php"
},
{
"include": "#commonmark-code-fenced-python"
},
{
"include": "#commonmark-code-fenced-r"
},
{
"include": "#commonmark-code-fenced-raku"
},
{
"include": "#commonmark-code-fenced-ruby"
},
{
"include": "#commonmark-code-fenced-rust"
},
{
"include": "#commonmark-code-fenced-scala"
},
{
"include": "#commonmark-code-fenced-scss"
},
{
"include": "#commonmark-code-fenced-shell"
},
{
"include": "#commonmark-code-fenced-shell-session"
},
{
"include": "#commonmark-code-fenced-sql"
},
{
"include": "#commonmark-code-fenced-svg"
},
{
"include": "#commonmark-code-fenced-swift"
},
{
"include": "#commonmark-code-fenced-toml"
},
{
"include": "#commonmark-code-fenced-ts"
},
{
"include": "#commonmark-code-fenced-tsx"
},
{
"include": "#commonmark-code-fenced-vbnet"
},
{
"include": "#commonmark-code-fenced-xml"
},
{
"include": "#commonmark-code-fenced-yaml"
},
{
"include": "#commonmark-code-fenced-unknown"
}
]
},
"commonmark-code-fenced-unknown": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?:[^\\t\\n\\r` ])+)(?:[\\t ]+((?:[^\\n\\r`])+))?)?(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "markup.raw.code.fenced.mdx",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.other.mdx"
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?:[^\\t\\n\\r ])+)(?:[\\t ]+((?:[^\\n\\r])+))?)?(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "markup.raw.code.fenced.mdx",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.other.mdx"
}
]
},
"commonmark-code-text": {
"match": "(?<!`)(`+)(?!`)(.+?)(?<!`)(\\1)(?!`)",
"name": "markup.code.other.mdx",
"captures": {
"1": {
"name": "string.other.begin.code.mdx"
},
"2": {
"name": "markup.raw.code.mdx markup.inline.raw.code.mdx"
},
"3": {
"name": "string.other.end.code.mdx"
}
}
},
"commonmark-definition": {
"match": "(?:^|\\G)[\\t ]*(\\[)((?:[^\\[\\\\\\]]|\\\\[\\[\\\\\\]]?)+?)(\\])(:)[ \\t]*(?:(<)((?:[^\\n<\\\\>]|\\\\[<\\\\>]?)*)(>)|(\\g<destination_raw>))(?:[\\t ]+(?:(\")((?:[^\"\\\\]|\\\\[\"\\\\]?)*)(\")|(')((?:[^'\\\\]|\\\\['\\\\]?)*)(')|(\\()((?:[^\\)\\\\]|\\\\[\\)\\\\]?)*)(\\))))?$(?<destination_raw>(?!\\<)(?:(?:[^\\p{Cc}\\ \\\\\\(\\)]|\\\\[\\(\\)\\\\]?)|\\(\\g<destination_raw>*\\))+){0}",
"name": "meta.link.reference.def.mdx",
"captures": {
"1": {
"name": "string.other.begin.mdx"
},
"2": {
"name": "entity.name.identifier.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"name": "string.other.end.mdx"
},
"4": {
"name": "punctuation.separator.key-value.mdx"
},
"5": {
"name": "string.other.begin.destination.mdx"
},
"6": {
"name": "string.other.link.destination.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"7": {
"name": "string.other.end.destination.mdx"
},
"8": {
"name": "string.other.link.destination.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"9": {
"name": "string.other.begin.mdx"
},
"10": {
"name": "string.quoted.double.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"11": {
"name": "string.other.end.mdx"
},
"12": {
"name": "string.other.begin.mdx"
},
"13": {
"name": "string.quoted.single.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"14": {
"name": "string.other.end.mdx"
},
"15": {
"name": "string.other.begin.mdx"
},
"16": {
"name": "string.quoted.paren.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"17": {
"name": "string.other.end.mdx"
}
}
},
"commonmark-hard-break-escape": {
"match": "\\\\$",
"name": "constant.language.character-escape.line-ending.mdx"
},
"commonmark-hard-break-trailing": {
"match": "( ){2,}$",
"name": "carriage-return constant.language.character-escape.line-ending.mdx"
},
"commonmark-heading-atx": {
"patterns": [
{
"match": "(?:^|\\G)[\\t ]*(#{1}(?!#))(?:[ \\t]+([^\\r\\n]+?)(?:[ \\t]+(#+?))?)?[ \\t]*$",
"name": "markup.heading.atx.1.mdx",
"captures": {
"1": {
"name": "punctuation.definition.heading.mdx"
},
"2": {
"name": "entity.name.section.mdx",
"patterns": [
{
"include": "#markdown-text"
}
]
},
"3": {
"name": "punctuation.definition.heading.mdx"
}
}
},
{
"match": "(?:^|\\G)[\\t ]*(#{2}(?!#))(?:[ \\t]+([^\\r\\n]+?)(?:[ \\t]+(#+?))?)?[ \\t]*$",
"name": "markup.heading.atx.2.mdx",
"captures": {
"1": {
"name": "punctuation.definition.heading.mdx"
},
"2": {
"name": "entity.name.section.mdx",
"patterns": [
{
"include": "#markdown-text"
}
]
},
"3": {
"name": "punctuation.definition.heading.mdx"
}
}
},
{
"match": "(?:^|\\G)[\\t ]*(#{3}(?!#))(?:[ \\t]+([^\\r\\n]+?)(?:[ \\t]+(#+?))?)?[ \\t]*$",
"name": "markup.heading.atx.2.mdx",
"captures": {
"1": {
"name": "punctuation.definition.heading.mdx"
},
"2": {
"name": "entity.name.section.mdx",
"patterns": [
{
"include": "#markdown-text"
}
]
},
"3": {
"name": "punctuation.definition.heading.mdx"
}
}
},
{
"match": "(?:^|\\G)[\\t ]*(#{4}(?!#))(?:[ \\t]+([^\\r\\n]+?)(?:[ \\t]+(#+?))?)?[ \\t]*$",
"name": "markup.heading.atx.2.mdx",
"captures": {
"1": {
"name": "punctuation.definition.heading.mdx"
},
"2": {
"name": "entity.name.section.mdx",
"patterns": [
{
"include": "#markdown-text"
}
]
},
"3": {
"name": "punctuation.definition.heading.mdx"
}
}
},
{
"match": "(?:^|\\G)[\\t ]*(#{5}(?!#))(?:[ \\t]+([^\\r\\n]+?)(?:[ \\t]+(#+?))?)?[ \\t]*$",
"name": "markup.heading.atx.2.mdx",
"captures": {
"1": {
"name": "punctuation.definition.heading.mdx"
},
"2": {
"name": "entity.name.section.mdx",
"patterns": [
{
"include": "#markdown-text"
}
]
},
"3": {
"name": "punctuation.definition.heading.mdx"
}
}
},
{
"match": "(?:^|\\G)[\\t ]*(#{6}(?!#))(?:[ \\t]+([^\\r\\n]+?)(?:[ \\t]+(#+?))?)?[ \\t]*$",
"name": "markup.heading.atx.2.mdx",
"captures": {
"1": {
"name": "punctuation.definition.heading.mdx"
},
"2": {
"name": "entity.name.section.mdx",
"patterns": [
{
"include": "#markdown-text"
}
]
},
"3": {
"name": "punctuation.definition.heading.mdx"
}
}
}
]
},
"commonmark-heading-setext": {
"patterns": [
{
"match": "(?:^|\\G)[\\t ]*(={1,})[ \\t]*$",
"name": "markup.heading.setext.1.mdx"
},
{
"match": "(?:^|\\G)[\\t ]*(-{1,})[ \\t]*$",
"name": "markup.heading.setext.2.mdx"
}
]
},
"commonmark-label-end": {
"patterns": [
{
"match": "(\\])(\\()[\\t ]*(?:(?:(<)((?:[^\\n<\\\\>]|\\\\[<\\\\>]?)*)(>)|(\\g<destination_raw>))(?:[\\t ]+(?:(\")((?:[^\"\\\\]|\\\\[\"\\\\]?)*)(\")|(')((?:[^'\\\\]|\\\\['\\\\]?)*)(')|(\\()((?:[^\\)\\\\]|\\\\[\\)\\\\]?)*)(\\))))?)?[\\t ]*(\\))(?<destination_raw>(?!\\<)(?:(?:[^\\p{Cc}\\ \\\\\\(\\)]|\\\\[\\(\\)\\\\]?)|\\(\\g<destination_raw>*\\))+){0}",
"captures": {
"1": {
"name": "string.other.end.mdx"
},
"2": {
"name": "string.other.begin.mdx"
},
"3": {
"name": "string.other.begin.destination.mdx"
},
"4": {
"name": "string.other.link.destination.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"5": {
"name": "string.other.end.destination.mdx"
},
"6": {
"name": "string.other.link.destination.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"7": {
"name": "string.other.begin.mdx"
},
"8": {
"name": "string.quoted.double.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"9": {
"name": "string.other.end.mdx"
},
"10": {
"name": "string.other.begin.mdx"
},
"11": {
"name": "string.quoted.single.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"12": {
"name": "string.other.end.mdx"
},
"13": {
"name": "string.other.begin.mdx"
},
"14": {
"name": "string.quoted.paren.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"15": {
"name": "string.other.end.mdx"
},
"16": {
"name": "string.other.end.mdx"
}
}
},
{
"match": "(\\])(\\[)((?:[^\\[\\\\\\]]|\\\\[\\[\\\\\\]]?)+?)(\\])",
"captures": {
"1": {
"name": "string.other.end.mdx"
},
"2": {
"name": "string.other.begin.mdx"
},
"3": {
"name": "entity.name.identifier.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"4": {
"name": "string.other.end.mdx"
}
}
},
{
"match": "(\\])",
"captures": {
"1": {
"name": "string.other.end.mdx"
}
}
}
]
},
"commonmark-label-start": {
"patterns": [
{
"match": "\\!\\[(?!\\^)",
"name": "string.other.begin.image.mdx"
},
{
"match": "\\[",
"name": "string.other.begin.link.mdx"
}
]
},
"commonmark-list-item": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*((?:[*+-]))(?:[ ]{4}(?![ ])|\\t)(\\[[\\t Xx]\\](?=[\\t\\n\\r ]+(?:$|[^\\t\\n\\r ])))?",
"beginCaptures": {
"1": {
"name": "variable.unordered.list.mdx"
},
"2": {
"name": "keyword.other.tasklist.mdx"
}
},
"patterns": [
{
"include": "#markdown-sections"
}
],
"while": "^(?=[\\t ]*$)|(?:^|\\G)(?:[ ]{4}|\\t)[ ]{1}"
},
{
"begin": "(?:^|\\G)[\\t ]*((?:[*+-]))(?:[ ]{3}(?![ ]))(\\[[\\t Xx]\\](?=[\\t\\n\\r ]+(?:$|[^\\t\\n\\r ])))?",
"beginCaptures": {
"1": {
"name": "variable.unordered.list.mdx"
},
"2": {
"name": "keyword.other.tasklist.mdx"
}
},
"patterns": [
{
"include": "#markdown-sections"
}
],
"while": "^(?=[\\t ]*$)|(?:^|\\G)(?:[ ]{4}|\\t)"
},
{
"begin": "(?:^|\\G)[\\t ]*((?:[*+-]))(?:[ ]{2}(?![ ]))(\\[[\\t Xx]\\](?=[\\t\\n\\r ]+(?:$|[^\\t\\n\\r ])))?",
"beginCaptures": {
"1": {
"name": "variable.unordered.list.mdx"
},
"2": {
"name": "keyword.other.tasklist.mdx"
}
},
"patterns": [
{
"include": "#markdown-sections"
}
],
"while": "^(?=[\\t ]*$)|(?:^|\\G)[ ]{3}"
},
{
"begin": "(?:^|\\G)[\\t ]*((?:[*+-]))(?:[ ]{1}|(?=\\n))(\\[[\\t Xx]\\](?=[\\t\\n\\r ]+(?:$|[^\\t\\n\\r ])))?",
"beginCaptures": {
"1": {
"name": "variable.unordered.list.mdx"
},
"2": {
"name": "keyword.other.tasklist.mdx"
}
},
"patterns": [
{
"include": "#markdown-sections"
}
],
"while": "^(?=[\\t ]*$)|(?:^|\\G)[ ]{2}"
},
{
"begin": "(?:^|\\G)[\\t ]*([0-9]{9})((?:\\.|\\)))(?:[ ]{4}(?![ ])|\\t(?![\\t ]))(\\[[\\t Xx]\\](?=[\\t\\n\\r ]+(?:$|[^\\t\\n\\r ])))?",
"beginCaptures": {
"1": {
"name": "string.other.number.mdx"
},
"2": {
"name": "variable.ordered.list.mdx"
},
"3": {
"name": "keyword.other.tasklist.mdx"
}
},
"patterns": [
{
"include": "#markdown-sections"
}
],
"while": "^(?=[\\t ]*$)|(?:^|\\G)(?:[ ]{4}|\\t){3}[ ]{2}"
},
{
"begin": "(?:^|\\G)[\\t ]*(?:([0-9]{9})((?:\\.|\\)))(?:[ ]{3}(?![ ]))|([0-9]{8})((?:\\.|\\)))(?:[ ]{4}(?![ ])))(\\[[\\t Xx]\\](?=[\\t\\n\\r ]+(?:$|[^\\t\\n\\r ])))?",
"beginCaptures": {
"1": {
"name": "string.other.number.mdx"
},
"2": {
"name": "variable.ordered.list.mdx"
},
"3": {
"name": "string.other.number.mdx"
},
"4": {
"name": "variable.ordered.list.mdx"
},
"5": {
"name": "keyword.other.tasklist.mdx"
}
},
"patterns": [
{
"include": "#markdown-sections"
}
],
"while": "^(?=[\\t ]*$)|(?:^|\\G)(?:[ ]{4}|\\t){3}[ ]{1}"
},
{
"begin": "(?:^|\\G)[\\t ]*(?:([0-9]{9})((?:\\.|\\)))(?:[ ]{2}(?![ ]))|([0-9]{8})((?:\\.|\\)))(?:[ ]{3}(?![ ]))|([0-9]{7})((?:\\.|\\)))(?:[ ]{4}(?![ ])))(\\[[\\t Xx]\\](?=[\\t\\n\\r ]+(?:$|[^\\t\\n\\r ])))?",
"beginCaptures": {
"1": {
"name": "string.other.number.mdx"
},
"2": {
"name": "variable.ordered.list.mdx"
},
"3": {
"name": "string.other.number.mdx"
},
"4": {
"name": "variable.ordered.list.mdx"
},
"5": {
"name": "string.other.number.mdx"
},
"6": {
"name": "variable.ordered.list.mdx"
},
"7": {
"name": "keyword.other.tasklist.mdx"
}
},
"patterns": [
{
"include": "#markdown-sections"
}
],
"while": "^(?=[\\t ]*$)|(?:^|\\G)(?:[ ]{4}|\\t){3}"
},
{
"begin": "(?:^|\\G)[\\t ]*(?:([0-9]{9})((?:\\.|\\)))(?:[ ]{1}|(?=[ \\t]*\\n))|([0-9]{8})((?:\\.|\\)))(?:[ ]{2}(?![ ]))|([0-9]{7})((?:\\.|\\)))(?:[ ]{3}(?![ ]))|([0-9]{6})((?:\\.|\\)))(?:[ ]{4}(?![ ])))(\\[[\\t Xx]\\](?=[\\t\\n\\r ]+(?:$|[^\\t\\n\\r ])))?",
"beginCaptures": {
"1": {
"name": "string.other.number.mdx"
},
"2": {
"name": "variable.ordered.list.mdx"
},
"3": {
"name": "string.other.number.mdx"
},
"4": {
"name": "variable.ordered.list.mdx"
},
"5": {
"name": "string.other.number.mdx"
},
"6": {
"name": "variable.ordered.list.mdx"
},
"7": {
"name": "string.other.number.mdx"
},
"8": {
"name": "variable.ordered.list.mdx"
},
"9": {
"name": "keyword.other.tasklist.mdx"
}
},
"patterns": [
{
"include": "#markdown-sections"
}
],
"while": "^(?=[\\t ]*$)|(?:^|\\G)(?:[ ]{4}|\\t){2}[ ]{3}"
},
{
"begin": "(?:^|\\G)[\\t ]*(?:([0-9]{8})((?:\\.|\\)))(?:[ ]{1}|(?=[ \\t]*\\n))|([0-9]{7})((?:\\.|\\)))(?:[ ]{2}(?![ ]))|([0-9]{6})((?:\\.|\\)))(?:[ ]{3}(?![ ]))|([0-9]{5})((?:\\.|\\)))(?:[ ]{4}(?![ ])))(\\[[\\t Xx]\\](?=[\\t\\n\\r ]+(?:$|[^\\t\\n\\r ])))?",
"beginCaptures": {
"1": {
"name": "string.other.number.mdx"
},
"2": {
"name": "variable.ordered.list.mdx"
},
"3": {
"name": "string.other.number.mdx"
},
"4": {
"name": "variable.ordered.list.mdx"
},
"5": {
"name": "string.other.number.mdx"
},
"6": {
"name": "variable.ordered.list.mdx"
},
"7": {
"name": "string.other.number.mdx"
},
"8": {
"name": "variable.ordered.list.mdx"
},
"9": {
"name": "keyword.other.tasklist.mdx"
}
},
"patterns": [
{
"include": "#markdown-sections"
}
],
"while": "^(?=[\\t ]*$)|(?:^|\\G)(?:[ ]{4}|\\t){2}[ ]{2}"
},
{
"begin": "(?:^|\\G)[\\t ]*(?:([0-9]{7})((?:\\.|\\)))(?:[ ]{1}|(?=[ \\t]*\\n))|([0-9]{6})((?:\\.|\\)))(?:[ ]{2}(?![ ]))|([0-9]{5})((?:\\.|\\)))(?:[ ]{3}(?![ ]))|([0-9]{4})((?:\\.|\\)))(?:[ ]{4}(?![ ])))(\\[[\\t Xx]\\](?=[\\t\\n\\r ]+(?:$|[^\\t\\n\\r ])))?",
"beginCaptures": {
"1": {
"name": "string.other.number.mdx"
},
"2": {
"name": "variable.ordered.list.mdx"
},
"3": {
"name": "string.other.number.mdx"
},
"4": {
"name": "variable.ordered.list.mdx"
},
"5": {
"name": "string.other.number.mdx"
},
"6": {
"name": "variable.ordered.list.mdx"
},
"7": {
"name": "string.other.number.mdx"
},
"8": {
"name": "variable.ordered.list.mdx"
},
"9": {
"name": "keyword.other.tasklist.mdx"
}
},
"patterns": [
{
"include": "#markdown-sections"
}
],
"while": "^(?=[\\t ]*$)|(?:^|\\G)(?:[ ]{4}|\\t){2}[ ]{1}"
},
{
"begin": "(?:^|\\G)[\\t ]*(?:([0-9]{6})((?:\\.|\\)))(?:[ ]{1}|(?=[ \\t]*\\n))|([0-9]{5})((?:\\.|\\)))(?:[ ]{2}(?![ ]))|([0-9]{4})((?:\\.|\\)))(?:[ ]{3}(?![ ]))|([0-9]{3})((?:\\.|\\)))(?:[ ]{4}(?![ ])))(\\[[\\t Xx]\\](?=[\\t\\n\\r ]+(?:$|[^\\t\\n\\r ])))?",
"beginCaptures": {
"1": {
"name": "string.other.number.mdx"
},
"2": {
"name": "variable.ordered.list.mdx"
},
"3": {
"name": "string.other.number.mdx"
},
"4": {
"name": "variable.ordered.list.mdx"
},
"5": {
"name": "string.other.number.mdx"
},
"6": {
"name": "variable.ordered.list.mdx"
},
"7": {
"name": "string.other.number.mdx"
},
"8": {
"name": "variable.ordered.list.mdx"
},
"9": {
"name": "keyword.other.tasklist.mdx"
}
},
"patterns": [
{
"include": "#markdown-sections"
}
],
"while": "^(?=[\\t ]*$)|(?:^|\\G)(?:[ ]{4}|\\t){2}"
},
{
"begin": "(?:^|\\G)[\\t ]*(?:([0-9]{5})((?:\\.|\\)))(?:[ ]{1}|(?=[ \\t]*\\n))|([0-9]{4})((?:\\.|\\)))(?:[ ]{2}(?![ ]))|([0-9]{3})((?:\\.|\\)))(?:[ ]{3}(?![ ]))|([0-9]{2})((?:\\.|\\)))(?:[ ]{4}(?![ ])))(\\[[\\t Xx]\\](?=[\\t\\n\\r ]+(?:$|[^\\t\\n\\r ])))?",
"beginCaptures": {
"1": {
"name": "string.other.number.mdx"
},
"2": {
"name": "variable.ordered.list.mdx"
},
"3": {
"name": "string.other.number.mdx"
},
"4": {
"name": "variable.ordered.list.mdx"
},
"5": {
"name": "string.other.number.mdx"
},
"6": {
"name": "variable.ordered.list.mdx"
},
"7": {
"name": "string.other.number.mdx"
},
"8": {
"name": "variable.ordered.list.mdx"
},
"9": {
"name": "keyword.other.tasklist.mdx"
}
},
"patterns": [
{
"include": "#markdown-sections"
}
],
"while": "^(?=[\\t ]*$)|(?:^|\\G)(?:[ ]{4}|\\t)[ ]{3}"
},
{
"begin": "(?:^|\\G)[\\t ]*(?:([0-9]{4})((?:\\.|\\)))(?:[ ]{1}|(?=[ \\t]*\\n))|([0-9]{3})((?:\\.|\\)))(?:[ ]{2}(?![ ]))|([0-9]{2})((?:\\.|\\)))(?:[ ]{3}(?![ ]))|([0-9]{1})((?:\\.|\\)))(?:[ ]{4}(?![ ])))(\\[[\\t Xx]\\](?=[\\t\\n\\r ]+(?:$|[^\\t\\n\\r ])))?",
"beginCaptures": {
"1": {
"name": "string.other.number.mdx"
},
"2": {
"name": "variable.ordered.list.mdx"
},
"3": {
"name": "string.other.number.mdx"
},
"4": {
"name": "variable.ordered.list.mdx"
},
"5": {
"name": "string.other.number.mdx"
},
"6": {
"name": "variable.ordered.list.mdx"
},
"7": {
"name": "string.other.number.mdx"
},
"8": {
"name": "variable.ordered.list.mdx"
},
"9": {
"name": "keyword.other.tasklist.mdx"
}
},
"patterns": [
{
"include": "#markdown-sections"
}
],
"while": "^(?=[\\t ]*$)|(?:^|\\G)(?:[ ]{4}|\\t)[ ]{2}"
},
{
"begin": "(?:^|\\G)[\\t ]*(?:([0-9]{3})((?:\\.|\\)))(?:[ ]{1}|(?=[ \\t]*\\n))|([0-9]{2})((?:\\.|\\)))(?:[ ]{2}(?![ ]))|([0-9]{1})((?:\\.|\\)))(?:[ ]{3}(?![ ])))(\\[[\\t Xx]\\](?=[\\t\\n\\r ]+(?:$|[^\\t\\n\\r ])))?",
"beginCaptures": {
"1": {
"name": "string.other.number.mdx"
},
"2": {
"name": "variable.ordered.list.mdx"
},
"3": {
"name": "string.other.number.mdx"
},
"4": {
"name": "variable.ordered.list.mdx"
},
"5": {
"name": "string.other.number.mdx"
},
"6": {
"name": "variable.ordered.list.mdx"
},
"7": {
"name": "keyword.other.tasklist.mdx"
}
},
"patterns": [
{
"include": "#markdown-sections"
}
],
"while": "^(?=[\\t ]*$)|(?:^|\\G)(?:[ ]{4}|\\t)[ ]{1}"
},
{
"begin": "(?:^|\\G)[\\t ]*(?:([0-9]{2})((?:\\.|\\)))(?:[ ]{1}|(?=[ \\t]*\\n))|([0-9])((?:\\.|\\)))(?:[ ]{2}(?![ ])))(\\[[\\t Xx]\\](?=[\\t\\n\\r ]+(?:$|[^\\t\\n\\r ])))?",
"beginCaptures": {
"1": {
"name": "string.other.number.mdx"
},
"2": {
"name": "variable.ordered.list.mdx"
},
"3": {
"name": "string.other.number.mdx"
},
"4": {
"name": "variable.ordered.list.mdx"
},
"5": {
"name": "keyword.other.tasklist.mdx"
}
},
"patterns": [
{
"include": "#markdown-sections"
}
],
"while": "^(?=[\\t ]*$)|(?:^|\\G)(?:[ ]{4}|\\t)"
},
{
"begin": "(?:^|\\G)[\\t ]*([0-9])((?:\\.|\\)))(?:[ ]{1}|(?=[ \\t]*\\n))(\\[[\\t Xx]\\](?=[\\t\\n\\r ]+(?:$|[^\\t\\n\\r ])))?",
"beginCaptures": {
"1": {
"name": "string.other.number.mdx"
},
"2": {
"name": "variable.ordered.list.mdx"
},
"3": {
"name": "keyword.other.tasklist.mdx"
}
},
"patterns": [
{
"include": "#markdown-sections"
}
],
"while": "^(?=[\\t ]*$)|(?:^|\\G)[ ]{3}"
}
]
},
"commonmark-paragraph": {
"begin": "(?![\\t ]*$)",
"name": "meta.paragraph.mdx",
"patterns": [
{
"include": "#markdown-text"
}
],
"while": "(?:^|\\G)(?:[ ]{4}|\\t)"
},
"commonmark-thematic-break": {
"match": "(?:^|\\G)[\\t ]*([-*_])[ \\t]*(?:\\1[ \\t]*){2,}$",
"name": "meta.separator.mdx"
},
"extension-gfm-autolink-literal": {
"patterns": [
{
"match": "(?<=^|[\\t\\n\\r \\(\\*\\_\\[\\]~])(?=(?i:www)\\.[^\\n\\r])(?:(?:[\\p{L}\\p{N}]|-|[\\._](?!(?:[!\"'\\)\\*,\\.:;<\\?_~]*(?:[\\s<]|\\][\\t\\n \\(\\[]))))+\\g<path>?)?(?<path>(?:(?:[^\\t\\n\\r !\"&'\\(\\)\\*,\\.:;<\\?\\]_~]|&(?![A-Za-z]*;(?:[!\"'\\)\\*,\\.:;<\\?_~]*(?:[\\s<]|\\][\\t\\n \\(\\[])))|[!\"'\\)\\*,\\.:;\\?_~](?!(?:[!\"'\\)\\*,\\.:;<\\?_~]*(?:[\\s<]|\\][\\t\\n \\(\\[]))))|\\(\\g<path>*\\))+){0}",
"name": "string.other.link.autolink.literal.www.mdx"
},
{
"match": "(?<=^|[^A-Za-z])(?i:https?://)(?=[\\p{L}\\p{N}])(?:(?:[\\p{L}\\p{N}]|-|[\\._](?!(?:[!\"'\\)\\*,\\.:;<\\?_~]*(?:[\\s<]|\\][\\t\\n \\(\\[]))))+\\g<path>?)?(?<path>(?:(?:[^\\t\\n\\r !\"&'\\(\\)\\*,\\.:;<\\?\\]_~]|&(?![A-Za-z]*;(?:[!\"'\\)\\*,\\.:;<\\?_~]*(?:[\\s<]|\\][\\t\\n \\(\\[])))|[!\"'\\)\\*,\\.:;\\?_~](?!(?:[!\"'\\)\\*,\\.:;<\\?_~]*(?:[\\s<]|\\][\\t\\n \\(\\[]))))|\\(\\g<path>*\\))+){0}",
"name": "string.other.link.autolink.literal.http.mdx"
},
{
"match": "(?<=^|[^A-Za-z/])(?i:mailto:|xmpp:)?(?:[0-9A-Za-z+\\-\\._])+@(?:(?:[0-9A-Za-z]|[-_](?!(?:[!\"'\\)\\*,\\.:;<\\?_~]*(?:[\\s<]|\\][\\t\\n \\(\\[]))))+(?:\\.(?!(?:[!\"'\\)\\*,\\.:;<\\?_~]*(?:[\\s<]|\\][\\t\\n \\(\\[])))))+(?:[A-Za-z]|[-_](?!(?:[!\"'\\)\\*,\\.:;<\\?_~]*(?:[\\s<]|\\][\\t\\n \\(\\[]))))+",
"name": "string.other.link.autolink.literal.email.mdx"
}
]
},
"extension-gfm-footnote-call": {
"match": "(\\[)(\\^)((?:[^\\t\\n\\r \\[\\\\\\]]|\\\\[\\[\\\\\\]]?)+)(\\])",
"captures": {
"1": {
"name": "string.other.begin.link.mdx"
},
"2": {
"name": "string.other.begin.footnote.mdx"
},
"3": {
"name": "entity.name.identifier.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"4": {
"name": "string.other.end.footnote.mdx"
}
}
},
"extension-gfm-footnote-definition": {
"begin": "(?:^|\\G)[\\t ]*(\\[)(\\^)((?:[^\\t\\n\\r \\[\\\\\\]]|\\\\[\\[\\\\\\]]?)+)(\\])(:)[\\t ]*",
"beginCaptures": {
"1": {
"name": "string.other.begin.link.mdx"
},
"2": {
"name": "string.other.begin.footnote.mdx"
},
"3": {
"name": "entity.name.identifier.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"4": {
"name": "string.other.end.footnote.mdx"
}
},
"patterns": [
{
"include": "#markdown-sections"
}
],
"while": "^(?=[\\t ]*$)|(?:^|\\G)(?:[ ]{4}|\\t)"
},
"extension-gfm-strikethrough": {
"match": "(?<=\\S)(?<!~)~{1,2}(?!~)|(?<!~)~{1,2}(?=\\S)(?!~)",
"name": "string.other.strikethrough.mdx"
},
"extension-gfm-table": {
"begin": "(?:^|\\G)[\\t ]*(?=\\|[^\\n\\r]+\\|[ \\t]*$)",
"patterns": [
{
"match": "(?<=\\||(?:^|\\G))[\\t ]*((?:[^\\n\\r\\\\\\|]|\\\\[\\\\\\|]?)+?)[\\t ]*(?=\\||$)",
"captures": {
"1": {
"patterns": [
{
"include": "#markdown-text"
}
]
}
}
},
{
"match": "(?:\\|)",
"name": "markup.list.table-delimiter.mdx"
}
],
"end": "^(?=[\\t ]*$)"
},
"extension-github-gemoji": {
"match": "(:)((?:(?:(?:hand_with_index_finger_and_thumb_cros|mailbox_clo|fist_rai|confu)s|r(?:aised_hand_with_fingers_splay|e(?:gister|l(?:iev|ax)))|disappointed_reliev|confound|(?:a(?:ston|ngu)i|flu)sh|unamus|hush)e|(?:chart_with_(?:down|up)wards_tre|large_orange_diamo|small_(?:orang|blu)e_diamo|large_blue_diamo|parasol_on_grou|loud_sou|rewi)n|(?:rightwards_pushing_h|hourglass_flowing_s|leftwards_(?:pushing_)?h|(?:raised_back_of|palm_(?:down|up)|call_me)_h|(?:(?:(?:clippert|ascensi)on|norfolk)_is|christmas_is|desert_is|bouvet_is|new_zea|thai|eng|fin|ire)l|rightwards_h|pinching_h|writing_h|s(?:w(?:itzer|azi)|cot)l|magic_w|ok_h|icel)an|s(?:un_behind_(?:large|small|rain)_clou|hallow_pan_of_foo|tar_of_davi|leeping_be|kateboar|a(?:tisfie|uropo)|hiel|oun|qui)|(?:ear_with_hearing_a|pouring_liqu)i|(?:identification_c|(?:arrow_(?:back|for)|fast_for)w|credit_c|woman_be|biohaz|man_be|l(?:eop|iz))ar|m(?:usical_key|ortar_)boar|(?:drop_of_bl|canned_f)oo|c(?:apital_abc|upi)|person_bal|(?:black_bi|(?:cust|plac)a)r|(?:clip|key)boar|mermai|pea_po|worrie|po(?:la|u)n|threa|dv)d|(?:(?:(?:face_with_open_eyes_and_hand_over|face_with_diagonal|open|no)_mou|h(?:and_over_mou|yacin)|mammo)t|running_shirt_with_sas|(?:(?:fishing_pole_and_|blow)fi|(?:tropical_f|petri_d)i|(?:paint|tooth)bru|banglade|jellyfi)s|(?:camera_fl|wavy_d)as|triump|menora|pouc|blus|watc|das|has)h|(?:s(?:o(?:(?:uth_georgia_south_sandwich|lomon)_island|ck)|miling_face_with_three_heart|t_kitts_nevi|weat_drop|agittariu|c(?:orpiu|issor)|ymbol|hort)|twisted_rightwards_arrow|(?:northern_mariana|heard_mcdonald|(?:british_virgi|us_virgi|pitcair|cayma)n|turks_caicos|us_outlying|(?:falk|a)land|marshall|c(?:anary|ocos)|faroe)_island|(?:face_holding_back_tea|(?:c(?:ard_index_divid|rossed_fing)|pinched_fing)e|night_with_sta)r|(?:two_(?:wo)?men_holding|people_holding|heart|open)_hand|(?:sunrise_over_mountai|(?:congratul|united_n)atio|jea)n|(?:caribbean_)?netherland|(?:f(?:lower_playing_car|ace_in_clou)|crossed_swor|prayer_bea)d|(?:money_with_win|nest_with_eg|crossed_fla|hotsprin)g|revolving_heart|(?:high_brightne|(?:expression|wire)le|(?:tumbler|wine)_gla|milk_gla|compa|dre)s|performing_art|earth_america|orthodox_cros|l(?:ow_brightnes|a(?:tin_cros|o)|ung)|no_pedestrian|c(?:ontrol_kno|lu)b|b(?:ookmark_tab|rick|ean)|nesting_doll|cook_island|(?:fleur_de_l|tenn)i|(?:o(?:ncoming_b|phiuch|ctop)|hi(?:ppopotam|bisc)|trolleyb|m(?:(?:rs|x)_cla|auriti|inib)|belar|cact|abac|(?:cyp|tau)r)u|medal_sport|(?:chopstic|firewor)k|rhinocero|(?:p(?:aw_prin|eanu)|footprin)t|two_heart|princes|(?:hondur|baham)a|barbado|aquariu|c(?:ustom|hain)|maraca|comoro|flag|wale|hug|vh)s|(?:(?:diamond_shape_with_a_dot_ins|playground_sl)id|(?:(?:first_quarter|last_quarter|full|new)_moon_with|(?:zipper|money)_mouth|dotted_line|upside_down|c(?:rying_c|owboy_h)at|(?:disguis|nauseat)ed|neutral|monocle|panda|tired|woozy|clown|nerd|zany|fox)_fac|s(?:t(?:uck_out_tongue_winking_ey|eam_locomotiv)|(?:lightly_(?:frown|smil)|neez|h(?:ush|ak))ing_fac|(?:tudio_micropho|(?:hinto_shr|lot_mach)i|ierra_leo|axopho)n|mall_airplan|un_with_fac|a(?:luting_fac|tellit|k)|haved_ic|y(?:nagogu|ring)|n(?:owfl)?ak|urinam|pong)|(?:black_(?:medium_)?small|white_(?:(?:medium_)?small|large)|(?:black|white)_medium|black_large|orange|purple|yellow|b(?:rown|lue)|red)_squar|(?:(?:perso|woma)n_with_|man_with_)?probing_can|(?:p(?:ut_litter_in_its_pl|outing_f)|frowning_f|cold_f|wind_f|hot_f)ac|(?:arrows_c(?:ounterc)?lockwi|computer_mou|derelict_hou|carousel_hor|c(?:ity_sunri|hee)|heartpul|briefca|racehor|pig_no|lacros)s|(?:(?:face_with_head_band|ideograph_advant|adhesive_band|under|pack)a|currency_exchan|l(?:eft_l)?ugga|woman_jud|name_bad|man_jud|jud)g|face_with_peeking_ey|(?:(?:e(?:uropean_post_off|ar_of_r)|post_off)i|information_sour|ambulan)c|artificial_satellit|(?:busts?_in_silhouet|(?:vulcan_sal|parach)u|m(?:usical_no|ayot)|ro(?:ller_ska|set)|timor_les|ice_ska)t|(?:(?:incoming|red)_envelo|s(?:ao_tome_princi|tethosco)|(?:micro|tele)sco|citysca)p|(?:(?:(?:convenience|department)_st|musical_sc)o|f(?:light_depar|ramed_pic)tu|love_you_gestu|heart_on_fi|japanese_og
"name": "string.emoji.mdx",
"captures": {
"1": {
"name": "punctuation.definition.gemoji.begin.mdx"
},
"2": {
"name": "keyword.control.gemoji.mdx"
},
"3": {
"name": "punctuation.definition.gemoji.end.mdx"
}
}
},
"extension-github-mention": {
"match": "(?<![0-9A-Za-z_`])(@)((?:[0-9A-Za-z][0-9A-Za-z-]{0,38})(?:\\/(?:[0-9A-Za-z][0-9A-Za-z-]{0,38}))?)(?![0-9A-Za-z_`])",
"name": "string.mention.mdx",
"captures": {
"1": {
"name": "punctuation.definition.mention.begin.mdx"
},
"2": {
"name": "string.other.link.mention.mdx"
}
}
},
"extension-github-reference": {
"patterns": [
{
"match": "(?<![0-9A-Za-z_])(?:((?i:ghsa-|cve-))([A-Za-z0-9]+)|((?i:gh-|#))([0-9]+))(?![0-9A-Za-z_])",
"name": "string.reference.mdx",
"captures": {
"1": {
"name": "punctuation.definition.reference.begin.mdx"
},
"2": {
"name": "string.other.link.reference.security-advisory.mdx"
},
"3": {
"name": "punctuation.definition.reference.begin.mdx"
},
"4": {
"name": "string.other.link.reference.issue-or-pr.mdx"
}
}
},
{
"match": "(?<![^\\t\\n\\r \\(@\\[\\{])((?:[0-9A-Za-z][0-9A-Za-z-]{0,38})(?:\\/(?:(?:\\.git[0-9A-Za-z_-]|\\.(?!git)|[0-9A-Za-z_-])+))?)(#)([0-9]+)(?![0-9A-Za-z_])",
"name": "string.reference.mdx",
"captures": {
"1": {
"name": "string.other.link.reference.user.mdx"
},
"2": {
"name": "punctuation.definition.reference.begin.mdx"
},
"3": {
"name": "string.other.link.reference.issue-or-pr.mdx"
}
}
}
]
},
"extension-math-flow": {
"begin": "(?:^|\\G)[\\t ]*(\\${2,})([^\\n\\r\\$]*)$",
"beginCaptures": {
"1": {
"name": "string.other.begin.math.flow.mdx"
},
"2": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "markup.raw.math.flow.mdx",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.math.flow.mdx"
}
},
"name": "markup.code.other.mdx"
},
"extension-math-text": {
"match": "(?<!\\$)(\\${2,})(?!\\$)(.+?)(?<!\\$)(\\1)(?!\\$)",
"captures": {
"1": {
"name": "string.other.begin.math.mdx"
},
"2": {
"name": "markup.raw.math.mdx markup.inline.raw.math.mdx"
},
"3": {
"name": "string.other.end.math.mdx"
}
}
},
"extension-mdx-esm": {
"name": "meta.embedded.tsx",
"begin": "(?:^|\\G)(?=(?i:export|import)[ ])",
"end": "^(?=[\\t ]*$)",
"patterns": [
{
"include": "source.tsx#statements"
}
]
},
"extension-mdx-expression-flow": {
"begin": "(?:^|\\G)[\\t ]*(\\{)",
"beginCaptures": {
"1": {
"name": "string.other.begin.expression.mdx.js"
}
},
"contentName": "meta.embedded.tsx",
"end": "(\\})(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.begin.expression.mdx.js"
}
},
"patterns": [
{
"include": "source.tsx#expression"
}
]
},
"extension-mdx-expression-text": {
"begin": "\\{",
"beginCaptures": {
"0": {
"name": "string.other.begin.expression.mdx.js"
}
},
"contentName": "meta.embedded.tsx",
"end": "\\}",
"endCaptures": {
"0": {
"name": "string.other.begin.expression.mdx.js"
}
},
"patterns": [
{
"include": "source.tsx#expression"
}
]
},
"extension-mdx-jsx-flow": {
"begin": "(?<=^|\\G|\\>)[\\t ]*(<)(?=(?![\\t\\n\\r ]))(?:\\s*(/))?(?:\\s*(?:(?:((?:[_$[:alpha:]][-_$[:alnum:]]*))\\s*(:)\\s*((?:[_$[:alpha:]][-_$[:alnum:]]*)))|((?:(?:[_$[:alpha:]][_$[:alnum:]]*)(?:\\s*\\.\\s*(?:[_$[:alpha:]][-_$[:alnum:]]*))+))|((?:[_$[:upper:]][_$[:alnum:]]*))|((?:[_$[:alpha:]][-_$[:alnum:]]*)))(?=[\\s\\/\\>\\{]))?",
"beginCaptures": {
"1": {
"name": "punctuation.definition.tag.end.jsx"
},
"2": {
"name": "punctuation.definition.tag.closing.jsx"
},
"3": {
"name": "entity.name.tag.namespace.jsx"
},
"4": {
"name": "punctuation.separator.namespace.jsx"
},
"5": {
"name": "entity.name.tag.local.jsx"
},
"6": {
"name": "support.class.component.jsx"
},
"7": {
"name": "support.class.component.jsx"
},
"8": {
"name": "entity.name.tag.jsx"
}
},
"patterns": [
{
"include": "source.tsx#jsx-tag-attribute-name"
},
{
"include": "source.tsx#jsx-tag-attribute-assignment"
},
{
"include": "source.tsx#jsx-string-double-quoted"
},
{
"include": "source.tsx#jsx-string-single-quoted"
},
{
"include": "source.tsx#jsx-evaluated-code"
},
{
"include": "source.tsx#jsx-tag-attributes-illegal"
}
],
"end": "(?:(\\/)\\s*)?(>)",
"endCaptures": {
"1": {
"name": "punctuation.definition.tag.self-closing.jsx"
},
"2": {
"name": "punctuation.definition.tag.end.jsx"
}
}
},
"extension-mdx-jsx-text": {
"begin": "(<)(?=(?![\\t\\n\\r ]))(?:\\s*(/))?(?:\\s*(?:(?:((?:[_$[:alpha:]][-_$[:alnum:]]*))\\s*(:)\\s*((?:[_$[:alpha:]][-_$[:alnum:]]*)))|((?:(?:[_$[:alpha:]][_$[:alnum:]]*)(?:\\s*\\.\\s*(?:[_$[:alpha:]][-_$[:alnum:]]*))+))|((?:[_$[:upper:]][_$[:alnum:]]*))|((?:[_$[:alpha:]][-_$[:alnum:]]*)))(?=[\\s\\/\\>\\{]))?",
"beginCaptures": {
"1": {
"name": "punctuation.definition.tag.end.jsx"
},
"2": {
"name": "punctuation.definition.tag.closing.jsx"
},
"3": {
"name": "entity.name.tag.namespace.jsx"
},
"4": {
"name": "punctuation.separator.namespace.jsx"
},
"5": {
"name": "entity.name.tag.local.jsx"
},
"6": {
"name": "support.class.component.jsx"
},
"7": {
"name": "support.class.component.jsx"
},
"8": {
"name": "entity.name.tag.jsx"
}
},
"patterns": [
{
"include": "source.tsx#jsx-tag-attribute-name"
},
{
"include": "source.tsx#jsx-tag-attribute-assignment"
},
{
"include": "source.tsx#jsx-string-double-quoted"
},
{
"include": "source.tsx#jsx-string-single-quoted"
},
{
"include": "source.tsx#jsx-evaluated-code"
},
{
"include": "source.tsx#jsx-tag-attributes-illegal"
}
],
"end": "(?:(\\/)\\s*)?(>)",
"endCaptures": {
"1": {
"name": "punctuation.definition.tag.self-closing.jsx"
},
"2": {
"name": "punctuation.definition.tag.end.jsx"
}
}
},
"extension-toml": {
"begin": "\\A\\+{3}$",
"end": "^\\+{3}$",
"beginCaptures": {
"0": {
"name": "string.other.begin.toml"
}
},
"endCaptures": {
"0": {
"name": "string.other.end.toml"
}
},
"contentName": "meta.embedded.toml",
"patterns": [
{
"include": "source.toml"
}
]
},
"extension-yaml": {
"begin": "\\A-{3}$",
"end": "^-{3}$",
"beginCaptures": {
"0": {
"name": "string.other.begin.yaml"
}
},
"endCaptures": {
"0": {
"name": "string.other.end.yaml"
}
},
"contentName": "meta.embedded.yaml",
"patterns": [
{
"include": "source.yaml"
}
]
},
"whatwg-html-data-character-reference-named-terminated": {
"match": "(&)((?:C(?:(?:o(?:unterClockwiseCo)?|lockwiseCo)ntourIntegra|cedi)|(?:(?:Not(?:S(?:quareSu(?:per|b)set|u(?:cceeds|(?:per|b)set))|Precedes|Greater|Tilde|Less)|Not(?:Righ|Lef)tTriangle|(?:Not(?:(?:Succeed|Precede|Les)s|Greater)|(?:Precede|Succeed)s|Less)Slant|SquareSu(?:per|b)set|(?:Not(?:Greater|Tilde)|Tilde|Less)Full|RightTriangle|LeftTriangle|Greater(?:Slant|Full)|Precedes|Succeeds|Superset|NotHump|Subset|Tilde|Hump)Equ|int(?:er)?c|DotEqu)a|DoubleContourIntegra|(?:n(?:short)?parall|shortparall|p(?:arall|rur))e|(?:rightarrowta|l(?:eftarrowta|ced|ata|Ata)|sced|rata|perm|rced|rAta|ced)i|Proportiona|smepars|e(?:qvpars|pars|xc|um)|Integra|suphso|rarr[pt]|n(?:pars|tg)|l(?:arr[pt]|cei)|Rarrt|(?:hybu|fora)l|ForAl|[GKLNR-Tcknt]cedi|rcei|iexc|gime|fras|[uy]um|oso|dso|ium|Ium)l|D(?:o(?:uble(?:(?:L(?:ong(?:Left)?R|eftR)ight|L(?:ongL)?eft|UpDown|Right|Up)Arrow|Do(?:wnArrow|t))|wn(?:ArrowUpA|TeeA|a)rrow)|iacriticalDot|strok|ashv|cy)|(?:(?:(?:N(?:(?:otN)?estedGreater|ot(?:Greater|Less))|Less(?:Equal)?)Great|GreaterGreat|l[lr]corn|mark|east)e|Not(?:Double)?VerticalBa|(?:Not(?:Righ|Lef)tTriangleB|(?:(?:Righ|Lef)tDown|Right(?:Up)?|Left(?:Up)?)VectorB|RightTriangleB|Left(?:Triangle|Arrow)B|RightArrowB|V(?:er(?:ticalB|b)|b)|UpArrowB|l(?:ur(?:ds|u)h|dr(?:us|d)h|trP|owb|H)|profal|r(?:ulu|dld)h|b(?:igst|rvb)|(?:wed|ve[er])b|s(?:wn|es)w|n(?:wne|ese|sp|hp)|gtlP|d(?:oll|uh|H)|(?:hor|ov)b|u(?:dh|H)|r(?:lh|H)|ohb|hb|St)a|D(?:o(?:wn(?:(?:Left(?:Right|Tee)|RightTee)Vecto|(?:(?:Righ|Lef)tVector|Arrow)Ba)|ubleVerticalBa)|a(?:gge|r)|sc|f)|(?:(?:(?:Righ|Lef)tDown|(?:Righ|Lef)tUp)Tee|(?:Righ|Lef)tUpDown)Vecto|VerticalSeparato|(?:Left(?:Right|Tee)|RightTee)Vecto|less(?:eqq?)?gt|e(?:qslantgt|sc)|(?:RightF|LeftF|[lr]f)loo|u(?:[lr]corne|ar)|timesba|(?:plusa|cirs|apa)ci|U(?:arroci|f)|(?:dzigr|s(?:u(?:pl|br)|imr|[lr])|zigr|angz|nvH|l(?:tl|B)|r[Br])ar|UnderBa|(?:plus|harr|top|mid|of)ci|O(?:verBa|sc|f)|dd?agge|s(?:olba|sc)|g(?:t(?:rar|ci)|sc|f)|c(?:opys|u(?:po|ep)|sc|f)|(?:n(?:(?:v[lr]|w|r)A|l[Aa]|h[Aa]|eA)|x[hlr][Aa]|u(?:ua|da|A)|s[ew]A|rla|o[lr]a|rba|rAa|l[Ablr]a|h(?:oa|A)|era|d(?:ua|A)|cra|vA)r|o(?:lci|sc|ro|pa)|ropa|roar|l(?:o(?:pa|ar)|sc|Ar)|i(?:ma|s)c|ltci|dd?ar|a(?:ma|s)c|R(?:Bar|sc|f)|I(?:mac|f)|(?:u(?:ma|s)|oma|ema|Oma|Ema|[wyz]s|qs|ks|fs|Zs|Ys|Xs|Ws|Vs|Us|Ss|Qs|Ns|Ms|Ks|Is|Gs|Fs|Cs|Bs)c|Umac|x(?:sc|f)|v(?:sc|f)|rsc|n(?:ld|f)|m(?:sc|ld|ac|f)|rAr|h(?:sc|f)|b(?:sc|f)|psc|P(?:sc|f)|L(?:sc|ar|f)|jsc|J(?:sc|f)|E(?:sc|f)|[HT]sc|[yz]f|wf|tf|qf|pf|kf|jf|Zf|Yf|Xf|Wf|Vf|Tf|Sf|Qf|Nf|Mf|Kf|Hf|Gf|Ff|Cf|Bf)r|(?:Diacritical(?:Double)?A|[EINOSYZaisz]a)cute|(?:(?:N(?:egative(?:VeryThin|Thi(?:ck|n))|onBreaking)|NegativeMedium|ZeroWidth|VeryThin|Medium|Thi(?:ck|n))Spac|Filled(?:Very)?SmallSquar|Empty(?:Very)?SmallSquar|(?:N(?:ot(?:Succeeds|Greater|Tilde|Less)T|t)|DiacriticalT|VerticalT|PrecedesT|SucceedsT|NotEqualT|GreaterT|TildeT|EqualT|LessT|at|Ut|It)ild|(?:(?:DiacriticalG|[EIOUaiu]g)ra|(?:u|U)?bre|(?:o|e)?gra)v|(?:doublebar|curly|big|x)wedg|H(?:orizontalLin|ilbertSpac)|Double(?:Righ|Lef)tTe|(?:(?:measured|uw)ang|exponentia|dwang|ssmi|fema)l|(?:Poincarepla|reali|pho|oli)n|(?:black)?lozeng|(?:VerticalL|(?:prof|imag)l)in|SmallCircl|(?:black|dot)squar|rmoustach|l(?:moustach|angl)|(?:b(?:ack)?pr|(?:tri|xo)t|[qt]pr)im|[Tt]herefor|(?:DownB|[Gag]b)rev|(?:infint|nv[lr]tr)i|b(?:arwedg|owti)|an(?:dslop|gl)|(?:cu(?:rly)?v|rthr|lthr|b(?:ig|ar)v|xv)e|n(?:s(?:qsu[bp]|ccu)|prcu)|orslop|NewLin|maltes|Becaus|rangl|incar|(?:otil|Otil|t(?:ra|il))d|[inu]tild|s(?:mil|imn)|(?:sc|pr)cu|Wedg|Prim|Brev)e|(?:CloseCurly(?:Double)?Quo|OpenCurly(?:Double)?Quo|[ry]?acu)te|(?:Reverse(?:Up)?|Up)Equilibrium|C(?:apitalDifferentialD|(?:oproduc|(?:ircleD|enterD|d)o)t|on(?:grue|i)nt|conint|upCap|o(?:lone|pf)|OPY|hi)|(?:(?:(?:left)?rightsquig|(?:longleftr|twoheadr|nleftr|nLeftr|longr|hookr|nR|Rr)ight|(?:twohead|hook)left|longleft|updown|Updown|nright|Right|nleft|nLeft|down|up|Up)a|L(?:(?:ong(?:left)?righ|(?:ong)?lef)ta|eft(?:(?:right)?a|RightA|TeeA))|RightTeeA|LongLeftA|UpTeeA)rrow|(?:(?:RightArrow|Short|Upper|Lower)Left|(?:L(?:eftArrow|o(?:wer|ng))|LongLeft|Short|Upper)Right|ShortUp)Arrow|
"name": "constant.language.character-reference.named.html",
"captures": {
"1": {
"name": "punctuation.definition.character-reference.begin.html"
},
"2": {
"name": "keyword.control.character-reference.html"
},
"3": {
"name": "punctuation.definition.character-reference.end.html"
}
}
},
"commonmark-code-fenced-apib": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:api\\x2dblueprint|(?:.*\\.)?apib))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.apib",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.apib.mdx",
"patterns": [
{
"include": "text.html.markdown.source.gfm.apib"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:api\\x2dblueprint|(?:.*\\.)?apib))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.apib",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.apib.mdx",
"patterns": [
{
"include": "text.html.markdown.source.gfm.apib"
}
]
}
]
},
"commonmark-code-fenced-asciidoc": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:(?:.*\\.)?(?:adoc|asciidoc)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.asciidoc",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.asciidoc.mdx",
"patterns": [
{
"include": "text.html.asciidoc"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:(?:.*\\.)?(?:adoc|asciidoc)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.asciidoc",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.asciidoc.mdx",
"patterns": [
{
"include": "text.html.asciidoc"
}
]
}
]
},
"commonmark-code-fenced-c": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:dtrace|dtrace\\x2dscript|oncrpc|rpc|rpcgen|unified\\x2dparallel\\x2dc|x\\x2dbitmap|x\\x2dpixmap|xdr|(?:.*\\.)?(?:c|cats|h|idc|opencl|upc|xbm|xpm|xs)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.c",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.c.mdx",
"patterns": [
{
"include": "source.c"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:dtrace|dtrace\\x2dscript|oncrpc|rpc|rpcgen|unified\\x2dparallel\\x2dc|x\\x2dbitmap|x\\x2dpixmap|xdr|(?:.*\\.)?(?:c|cats|h|idc|opencl|upc|xbm|xpm|xs)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.c",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.c.mdx",
"patterns": [
{
"include": "source.c"
}
]
}
]
},
"commonmark-code-fenced-clojure": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:clojure|rouge|(?:.*\\.)?(?:boot|cl2|clj|cljc|cljs|cljs\\.hl|cljscm|cljx|edn|hic|rg|wisp)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.clojure",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.clojure.mdx",
"patterns": [
{
"include": "source.clojure"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:clojure|rouge|(?:.*\\.)?(?:boot|cl2|clj|cljc|cljs|cljs\\.hl|cljscm|cljx|edn|hic|rg|wisp)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.clojure",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.clojure.mdx",
"patterns": [
{
"include": "source.clojure"
}
]
}
]
},
"commonmark-code-fenced-coffee": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:coffee\\x2dscript|coffeescript|(?:.*\\.)?(?:_coffee|cjsx|coffee|cson|em|emberscript|iced)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.coffee",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.coffee.mdx",
"patterns": [
{
"include": "source.coffee"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:coffee\\x2dscript|coffeescript|(?:.*\\.)?(?:_coffee|cjsx|coffee|cson|em|emberscript|iced)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.coffee",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.coffee.mdx",
"patterns": [
{
"include": "source.coffee"
}
]
}
]
},
"commonmark-code-fenced-console": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:pycon|python\\x2dconsole))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.console",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.console.mdx",
"patterns": [
{
"include": "text.python.console"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:pycon|python\\x2dconsole))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.console",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.console.mdx",
"patterns": [
{
"include": "text.python.console"
}
]
}
]
},
"commonmark-code-fenced-cpp": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:ags|ags\\x2dscript|asymptote|c\\+\\+|edje\\x2ddata\\x2dcollection|game\\x2dmaker\\x2dlanguage|swig|(?:.*\\.)?(?:asc|ash|asy|c\\+\\+|cc|cp|cpp|cppm|cxx|edc|gml|h\\+\\+|hh|hpp|hxx|inl|ino|ipp|ixx|metal|re|tcc|tpp)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.cpp",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.cpp.mdx",
"patterns": [
{
"include": "source.c++"
},
{
"include": "source.cpp"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:ags|ags\\x2dscript|asymptote|c\\+\\+|edje\\x2ddata\\x2dcollection|game\\x2dmaker\\x2dlanguage|swig|(?:.*\\.)?(?:asc|ash|asy|c\\+\\+|cc|cp|cpp|cppm|cxx|edc|gml|h\\+\\+|hh|hpp|hxx|inl|ino|ipp|ixx|metal|re|tcc|tpp)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.cpp",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.cpp.mdx",
"patterns": [
{
"include": "source.c++"
},
{
"include": "source.cpp"
}
]
}
]
},
"commonmark-code-fenced-cs": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:beef|c#|cakescript|csharp|(?:.*\\.)?(?:bf|cake|cs|csx|eq|linq|uno)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.cs",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.cs.mdx",
"patterns": [
{
"include": "source.cs"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:beef|c#|cakescript|csharp|(?:.*\\.)?(?:bf|cake|cs|csx|eq|linq|uno)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.cs",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.cs.mdx",
"patterns": [
{
"include": "source.cs"
}
]
}
]
},
"commonmark-code-fenced-css": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:(?:.*\\.)?css))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.css",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.css.mdx",
"patterns": [
{
"include": "source.css"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:(?:.*\\.)?css))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.css",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.css.mdx",
"patterns": [
{
"include": "source.css"
}
]
}
]
},
"commonmark-code-fenced-diff": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:udiff|(?:.*\\.)?(?:diff|patch)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.diff",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.diff.mdx",
"patterns": [
{
"include": "source.diff"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:udiff|(?:.*\\.)?(?:diff|patch)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.diff",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.diff.mdx",
"patterns": [
{
"include": "source.diff"
}
]
}
]
},
"commonmark-code-fenced-dockerfile": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:containerfile|(?:.*\\.)?dockerfile))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.dockerfile",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.dockerfile.mdx",
"patterns": [
{
"include": "source.dockerfile"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:containerfile|(?:.*\\.)?dockerfile))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.dockerfile",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.dockerfile.mdx",
"patterns": [
{
"include": "source.dockerfile"
}
]
}
]
},
"commonmark-code-fenced-elixir": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:elixir|(?:.*\\.)?(?:ex|exs)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.elixir",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.elixir.mdx",
"patterns": [
{
"include": "source.elixir"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:elixir|(?:.*\\.)?(?:ex|exs)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.elixir",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.elixir.mdx",
"patterns": [
{
"include": "source.elixir"
}
]
}
]
},
"commonmark-code-fenced-elm": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:(?:.*\\.)?elm))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.elm",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.elm.mdx",
"patterns": [
{
"include": "source.elm"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:(?:.*\\.)?elm))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.elm",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.elm.mdx",
"patterns": [
{
"include": "source.elm"
}
]
}
]
},
"commonmark-code-fenced-erlang": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:erlang|(?:.*\\.)?(?:app|app\\.src|erl|es|escript|hrl|xrl|yrl)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.erlang",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.erlang.mdx",
"patterns": [
{
"include": "source.erlang"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:erlang|(?:.*\\.)?(?:app|app\\.src|erl|es|escript|hrl|xrl|yrl)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.erlang",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.erlang.mdx",
"patterns": [
{
"include": "source.erlang"
}
]
}
]
},
"commonmark-code-fenced-gitconfig": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:git\\x2dconfig|gitmodules|(?:.*\\.)?gitconfig))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.gitconfig",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.gitconfig.mdx",
"patterns": [
{
"include": "source.gitconfig"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:git\\x2dconfig|gitmodules|(?:.*\\.)?gitconfig))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.gitconfig",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.gitconfig.mdx",
"patterns": [
{
"include": "source.gitconfig"
}
]
}
]
},
"commonmark-code-fenced-go": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:golang|(?:.*\\.)?go))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.go",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.go.mdx",
"patterns": [
{
"include": "source.go"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:golang|(?:.*\\.)?go))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.go",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.go.mdx",
"patterns": [
{
"include": "source.go"
}
]
}
]
},
"commonmark-code-fenced-graphql": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:(?:.*\\.)?(?:gql|graphql|graphqls)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.graphql",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.graphql.mdx",
"patterns": [
{
"include": "source.graphql"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:(?:.*\\.)?(?:gql|graphql|graphqls)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.graphql",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.graphql.mdx",
"patterns": [
{
"include": "source.graphql"
}
]
}
]
},
"commonmark-code-fenced-haskell": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:c2hs|c2hs\\x2dhaskell|frege|haskell|(?:.*\\.)?(?:chs|dhall|hs|hs\\x2dboot|hsc)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.haskell",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.haskell.mdx",
"patterns": [
{
"include": "source.haskell"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:c2hs|c2hs\\x2dhaskell|frege|haskell|(?:.*\\.)?(?:chs|dhall|hs|hs\\x2dboot|hsc)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.haskell",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.haskell.mdx",
"patterns": [
{
"include": "source.haskell"
}
]
}
]
},
"commonmark-code-fenced-html": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:html|(?:.*\\.)?(?:hta|htm|html\\.hl|kit|mtml|xht|xhtml)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.html",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.html.mdx",
"patterns": [
{
"include": "text.html.basic"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:html|(?:.*\\.)?(?:hta|htm|html\\.hl|kit|mtml|xht|xhtml)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.html",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.html.mdx",
"patterns": [
{
"include": "text.html.basic"
}
]
}
]
},
"commonmark-code-fenced-ini": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:altium|altium\\x2ddesigner|dosini|(?:.*\\.)?(?:cnf|dof|ini|lektorproject|outjob|pcbdoc|prefs|prjpcb|properties|schdoc|url)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.ini",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.ini.mdx",
"patterns": [
{
"include": "source.ini"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:altium|altium\\x2ddesigner|dosini|(?:.*\\.)?(?:cnf|dof|ini|lektorproject|outjob|pcbdoc|prefs|prjpcb|properties|schdoc|url)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.ini",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.ini.mdx",
"patterns": [
{
"include": "source.ini"
}
]
}
]
},
"commonmark-code-fenced-java": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:apex|chuck|unrealscript|(?:.*\\.)?(?:ck|cls|jav|java|jsh|uc)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.java",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.java.mdx",
"patterns": [
{
"include": "source.java"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:apex|chuck|unrealscript|(?:.*\\.)?(?:ck|cls|jav|java|jsh|uc)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.java",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.java.mdx",
"patterns": [
{
"include": "source.java"
}
]
}
]
},
"commonmark-code-fenced-js": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:cycript|javascript\\+erb|json\\x2dwith\\x2dcomments|node|qt\\x2dscript|(?:.*\\.)?(?:_js|bones|cjs|code\\x2dsnippets|cy|es6|jake|javascript|js|js\\.erb|jsb|jscad|jsfl|jslib|jsm|json5|jsonc|jsonld|jspre|jss|jsx|mjs|njs|pac|sjs|ssjs|sublime\\x2dbuild|sublime\\x2dcommands|sublime\\x2dcompletions|sublime\\x2dkeymap|sublime\\x2dmacro|sublime\\x2dmenu|sublime\\x2dmousemap|sublime\\x2dproject|sublime\\x2dsettings|sublime\\x2dtheme|sublime\\x2dworkspace|sublime_metrics|sublime_session|xsjs|xsjslib)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.js",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.js.mdx",
"patterns": [
{
"include": "source.js"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:cycript|javascript\\+erb|json\\x2dwith\\x2dcomments|node|qt\\x2dscript|(?:.*\\.)?(?:_js|bones|cjs|code\\x2dsnippets|cy|es6|jake|javascript|js|js\\.erb|jsb|jscad|jsfl|jslib|jsm|json5|jsonc|jsonld|jspre|jss|jsx|mjs|njs|pac|sjs|ssjs|sublime\\x2dbuild|sublime\\x2dcommands|sublime\\x2dcompletions|sublime\\x2dkeymap|sublime\\x2dmacro|sublime\\x2dmenu|sublime\\x2dmousemap|sublime\\x2dproject|sublime\\x2dsettings|sublime\\x2dtheme|sublime\\x2dworkspace|sublime_metrics|sublime_session|xsjs|xsjslib)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.js",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.js.mdx",
"patterns": [
{
"include": "source.js"
}
]
}
]
},
"commonmark-code-fenced-json": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:ecere\\x2dprojects|ipython\\x2dnotebook|jupyter\\x2dnotebook|max|max/msp|maxmsp|oasv2\\x2djson|oasv3\\x2djson|(?:.*\\.)?(?:4dform|4dproject|avsc|epj|geojson|gltf|har|ice|ipynb|json|json|json|json\\x2dtmlanguage|jsonl|maxhelp|maxpat|maxproj|mcmeta|mxt|pat|tfstate|tfstate\\.backup|topojson|webapp|webmanifest|yy|yyp)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.json",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.json.mdx",
"patterns": [
{
"include": "source.json"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:ecere\\x2dprojects|ipython\\x2dnotebook|jupyter\\x2dnotebook|max|max/msp|maxmsp|oasv2\\x2djson|oasv3\\x2djson|(?:.*\\.)?(?:4dform|4dproject|avsc|epj|geojson|gltf|har|ice|ipynb|json|json|json|json\\x2dtmlanguage|jsonl|maxhelp|maxpat|maxproj|mcmeta|mxt|pat|tfstate|tfstate\\.backup|topojson|webapp|webmanifest|yy|yyp)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.json",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.json.mdx",
"patterns": [
{
"include": "source.json"
}
]
}
]
},
"commonmark-code-fenced-julia": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:julia|(?:.*\\.)?jl))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.julia",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.julia.mdx",
"patterns": [
{
"include": "source.julia"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:julia|(?:.*\\.)?jl))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.julia",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.julia.mdx",
"patterns": [
{
"include": "source.julia"
}
]
}
]
},
"commonmark-code-fenced-kotlin": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:kotlin|(?:.*\\.)?(?:kt|ktm|kts)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.kotlin",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.kotlin.mdx",
"patterns": [
{
"include": "source.kotlin"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:kotlin|(?:.*\\.)?(?:kt|ktm|kts)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.kotlin",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.kotlin.mdx",
"patterns": [
{
"include": "source.kotlin"
}
]
}
]
},
"commonmark-code-fenced-less": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:less\\x2dcss|(?:.*\\.)?less))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.less",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.less.mdx",
"patterns": [
{
"include": "source.css.less"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:less\\x2dcss|(?:.*\\.)?less))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.less",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.less.mdx",
"patterns": [
{
"include": "source.css.less"
}
]
}
]
},
"commonmark-code-fenced-lua": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:(?:.*\\.)?(?:fcgi|lua|nse|p8|pd_lua|rbxs|rockspec|wlua)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.lua",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.lua.mdx",
"patterns": [
{
"include": "source.lua"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:(?:.*\\.)?(?:fcgi|lua|nse|p8|pd_lua|rbxs|rockspec|wlua)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.lua",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.lua.mdx",
"patterns": [
{
"include": "source.lua"
}
]
}
]
},
"commonmark-code-fenced-makefile": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:bsdmake|mf|(?:.*\\.)?(?:mak|make|makefile|mk|mkfile)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.makefile",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.makefile.mdx",
"patterns": [
{
"include": "source.makefile"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:bsdmake|mf|(?:.*\\.)?(?:mak|make|makefile|mk|mkfile)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.makefile",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.makefile.mdx",
"patterns": [
{
"include": "source.makefile"
}
]
}
]
},
"commonmark-code-fenced-md": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:pandoc|rmarkdown|(?:.*\\.)?(?:livemd|markdown|mdown|mdwn|mkd|mkdn|mkdown|qmd|rmd|ronn|scd|workbook)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.md",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.md.mdx",
"patterns": [
{
"include": "text.md"
},
{
"include": "source.gfm"
},
{
"include": "text.html.markdown"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:pandoc|rmarkdown|(?:.*\\.)?(?:livemd|markdown|mdown|mdwn|mkd|mkdn|mkdown|qmd|rmd|ronn|scd|workbook)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.md",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.md.mdx",
"patterns": [
{
"include": "text.md"
},
{
"include": "source.gfm"
},
{
"include": "text.html.markdown"
}
]
}
]
},
"commonmark-code-fenced-mdx": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:(?:.*\\.)?mdx))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.mdx",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.mdx.mdx",
"patterns": [
{
"include": "source.mdx"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:(?:.*\\.)?mdx))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.mdx",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.mdx.mdx",
"patterns": [
{
"include": "source.mdx"
}
]
}
]
},
"commonmark-code-fenced-objc": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:obj\\x2dc|objc|objective\\x2dc|objectivec))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.objc",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.objc.mdx",
"patterns": [
{
"include": "source.objc"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:obj\\x2dc|objc|objective\\x2dc|objectivec))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.objc",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.objc.mdx",
"patterns": [
{
"include": "source.objc"
}
]
}
]
},
"commonmark-code-fenced-perl": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:cperl|(?:.*\\.)?(?:cgi|perl|ph|pl|plx|pm|psgi|t)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.perl",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.perl.mdx",
"patterns": [
{
"include": "source.perl"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:cperl|(?:.*\\.)?(?:cgi|perl|ph|pl|plx|pm|psgi|t)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.perl",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.perl.mdx",
"patterns": [
{
"include": "source.perl"
}
]
}
]
},
"commonmark-code-fenced-php": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:html\\+php|inc|php|(?:.*\\.)?(?:aw|ctp|php3|php4|php5|phps|phpt|phtml)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.php",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.php.mdx",
"patterns": [
{
"include": "text.html.php"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:html\\+php|inc|php|(?:.*\\.)?(?:aw|ctp|php3|php4|php5|phps|phpt|phtml)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.php",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.php.mdx",
"patterns": [
{
"include": "text.html.php"
}
]
}
]
},
"commonmark-code-fenced-python": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:bazel|easybuild|python|python3|rusthon|snakemake|starlark|xonsh|(?:.*\\.)?(?:bzl|eb|gyp|gypi|lmi|py|py3|pyde|pyi|pyp|pyt|pyw|rpy|sage|sagews|smk|snakefile|spec|tac|wsgi|xpy|xsh)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.python",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.python.mdx",
"patterns": [
{
"include": "source.python"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:bazel|easybuild|python|python3|rusthon|snakemake|starlark|xonsh|(?:.*\\.)?(?:bzl|eb|gyp|gypi|lmi|py|py3|pyde|pyi|pyp|pyt|pyw|rpy|sage|sagews|smk|snakefile|spec|tac|wsgi|xpy|xsh)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.python",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.python.mdx",
"patterns": [
{
"include": "source.python"
}
]
}
]
},
"commonmark-code-fenced-r": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:rscript|splus|(?:.*\\.)?(?:r|rd|rsx)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.r",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.r.mdx",
"patterns": [
{
"include": "source.r"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:rscript|splus|(?:.*\\.)?(?:r|rd|rsx)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.r",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.r.mdx",
"patterns": [
{
"include": "source.r"
}
]
}
]
},
"commonmark-code-fenced-raku": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:perl\\x2d6|perl6|pod\\x2d6|(?:.*\\.)?(?:6pl|6pm|nqp|p6|p6l|p6m|pl6|pm6|pod|pod6|raku|rakumod)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.raku",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.raku.mdx",
"patterns": [
{
"include": "source.raku"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:perl\\x2d6|perl6|pod\\x2d6|(?:.*\\.)?(?:6pl|6pm|nqp|p6|p6l|p6m|pl6|pm6|pod|pod6|raku|rakumod)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.raku",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.raku.mdx",
"patterns": [
{
"include": "source.raku"
}
]
}
]
},
"commonmark-code-fenced-ruby": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:jruby|macruby|(?:.*\\.)?(?:builder|druby|duby|eye|gemspec|god|jbuilder|mirah|mspec|pluginspec|podspec|prawn|rabl|rake|rb|rbi|rbuild|rbw|rbx|ru|ruby|thor|watchr)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.ruby",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.ruby.mdx",
"patterns": [
{
"include": "source.ruby"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:jruby|macruby|(?:.*\\.)?(?:builder|druby|duby|eye|gemspec|god|jbuilder|mirah|mspec|pluginspec|podspec|prawn|rabl|rake|rb|rbi|rbuild|rbw|rbx|ru|ruby|thor|watchr)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.ruby",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.ruby.mdx",
"patterns": [
{
"include": "source.ruby"
}
]
}
]
},
"commonmark-code-fenced-rust": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:rust|(?:.*\\.)?(?:rs|rs\\.in)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.rust",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.rust.mdx",
"patterns": [
{
"include": "source.rust"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:rust|(?:.*\\.)?(?:rs|rs\\.in)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.rust",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.rust.mdx",
"patterns": [
{
"include": "source.rust"
}
]
}
]
},
"commonmark-code-fenced-scala": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:(?:.*\\.)?(?:kojo|sbt|sc|scala)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.scala",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.scala.mdx",
"patterns": [
{
"include": "source.scala"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:(?:.*\\.)?(?:kojo|sbt|sc|scala)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.scala",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.scala.mdx",
"patterns": [
{
"include": "source.scala"
}
]
}
]
},
"commonmark-code-fenced-scss": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:(?:.*\\.)?scss))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.scss",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.scss.mdx",
"patterns": [
{
"include": "source.css.scss"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:(?:.*\\.)?scss))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.scss",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.scss.mdx",
"patterns": [
{
"include": "source.css.scss"
}
]
}
]
},
"commonmark-code-fenced-shell": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:abuild|alpine\\x2dabuild|apkbuild|gentoo\\x2debuild|gentoo\\x2declass|openrc|openrc\\x2drunscript|shell|shell\\x2dscript|(?:.*\\.)?(?:bash|bats|command|csh|ebuild|eclass|ksh|sh|sh\\.in|tcsh|tmux|tool|zsh|zsh\\x2dtheme)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.shell",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.shell.mdx",
"patterns": [
{
"include": "source.shell"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:abuild|alpine\\x2dabuild|apkbuild|gentoo\\x2debuild|gentoo\\x2declass|openrc|openrc\\x2drunscript|shell|shell\\x2dscript|(?:.*\\.)?(?:bash|bats|command|csh|ebuild|eclass|ksh|sh|sh\\.in|tcsh|tmux|tool|zsh|zsh\\x2dtheme)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.shell",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.shell.mdx",
"patterns": [
{
"include": "source.shell"
}
]
}
]
},
"commonmark-code-fenced-shell-session": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:bash\\x2dsession|console|shellsession|(?:.*\\.)?sh\\x2dsession))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.shell-session",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.shell-session.mdx",
"patterns": [
{
"include": "text.shell-session"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:bash\\x2dsession|console|shellsession|(?:.*\\.)?sh\\x2dsession))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.shell-session",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.shell-session.mdx",
"patterns": [
{
"include": "text.shell-session"
}
]
}
]
},
"commonmark-code-fenced-sql": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:plpgsql|sqlpl|(?:.*\\.)?(?:cql|db2|ddl|mysql|pgsql|prc|sql|sql|sql|tab|udf|viw)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.sql",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.sql.mdx",
"patterns": [
{
"include": "source.sql"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:plpgsql|sqlpl|(?:.*\\.)?(?:cql|db2|ddl|mysql|pgsql|prc|sql|sql|sql|tab|udf|viw)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.sql",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.sql.mdx",
"patterns": [
{
"include": "source.sql"
}
]
}
]
},
"commonmark-code-fenced-svg": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:(?:.*\\.)?svg))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.svg",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.svg.mdx",
"patterns": [
{
"include": "text.xml.svg"
},
{
"include": "text.xml"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:(?:.*\\.)?svg))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.svg",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.svg.mdx",
"patterns": [
{
"include": "text.xml.svg"
},
{
"include": "text.xml"
}
]
}
]
},
"commonmark-code-fenced-swift": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:(?:.*\\.)?swift))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.swift",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.swift.mdx",
"patterns": [
{
"include": "source.swift"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:(?:.*\\.)?swift))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.swift",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.swift.mdx",
"patterns": [
{
"include": "source.swift"
}
]
}
]
},
"commonmark-code-fenced-toml": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:(?:.*\\.)?toml))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.toml",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.toml.mdx",
"patterns": [
{
"include": "source.toml"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:(?:.*\\.)?toml))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.toml",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.toml.mdx",
"patterns": [
{
"include": "source.toml"
}
]
}
]
},
"commonmark-code-fenced-ts": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:typescript|(?:.*\\.)?(?:cts|mts|ts)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.ts",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.ts.mdx",
"patterns": [
{
"include": "source.ts"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:typescript|(?:.*\\.)?(?:cts|mts|ts)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.ts",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.ts.mdx",
"patterns": [
{
"include": "source.ts"
}
]
}
]
},
"commonmark-code-fenced-tsx": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:(?:.*\\.)?tsx))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.tsx",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.tsx.mdx",
"patterns": [
{
"include": "source.tsx"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:(?:.*\\.)?tsx))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.tsx",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.tsx.mdx",
"patterns": [
{
"include": "source.tsx"
}
]
}
]
},
"commonmark-code-fenced-vbnet": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:classic\\x2dvisual\\x2dbasic|fb|freebasic|realbasic|vb\\x2d\\.net|vb\\x2d6|vb\\.net|vb6|vbnet|vbscript|visual\\x2dbasic|visual\\x2dbasic\\x2d\\.net|visual\\x2dbasic\\x2d6|visual\\x2dbasic\\x2d6\\.0|visual\\x2dbasic\\x2dclassic|visual\\x2dbasic\\x2dfor\\x2dapplications|(?:.*\\.)?(?:bi|ctl|dsr|frm|frm|rbbas|rbfrm|rbmnu|rbres|rbtbar|rbuistate|vb|vba|vbhtml|vbs)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.vbnet",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.vbnet.mdx",
"patterns": [
{
"include": "source.vbnet"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:classic\\x2dvisual\\x2dbasic|fb|freebasic|realbasic|vb\\x2d\\.net|vb\\x2d6|vb\\.net|vb6|vbnet|vbscript|visual\\x2dbasic|visual\\x2dbasic\\x2d\\.net|visual\\x2dbasic\\x2d6|visual\\x2dbasic\\x2d6\\.0|visual\\x2dbasic\\x2dclassic|visual\\x2dbasic\\x2dfor\\x2dapplications|(?:.*\\.)?(?:bi|ctl|dsr|frm|frm|rbbas|rbfrm|rbmnu|rbres|rbtbar|rbuistate|vb|vba|vbhtml|vbs)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.vbnet",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.vbnet.mdx",
"patterns": [
{
"include": "source.vbnet"
}
]
}
]
},
"commonmark-code-fenced-xml": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:collada|eagle|labview|web\\x2dontology\\x2dlanguage|xpages|(?:.*\\.)?(?:adml|admx|ant|axaml|axml|brd|builds|ccproj|ccxml|clixml|cproject|cscfg|csdef|csproj|ct|dae|depproj|dita|ditamap|ditaval|dll\\.config|dotsettings|filters|fsproj|fxml|glade|gmx|grxml|hzp|iml|ivy|jelly|jsproj|kml|launch|lvclass|lvlib|lvproj|mdpolicy|mjml|mxml|natvis|ndproj|nproj|nuspec|odd|osm|owl|pkgproj|proj|props|ps1xml|psc1|pt|qhelp|rdf|resx|rss|sch|sch|scxml|sfproj|shproj|srdf|storyboard|sublime\\x2dsnippet|targets|tml|ui|urdf|ux|vbproj|vcxproj|vsixmanifest|vssettings|vstemplate|vxml|wixproj|wsdl|wsf|wxi|wxl|wxs|x3d|xacro|xaml|xib|xlf|xliff|xmi|xml|xml\\.dist|xmp|xpl|xproc|xproj|xsd|xsp\\x2dconfig|xsp\\.metadata|xspec|xul|zcml)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.xml",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.xml.mdx",
"patterns": [
{
"include": "text.xml"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:collada|eagle|labview|web\\x2dontology\\x2dlanguage|xpages|(?:.*\\.)?(?:adml|admx|ant|axaml|axml|brd|builds|ccproj|ccxml|clixml|cproject|cscfg|csdef|csproj|ct|dae|depproj|dita|ditamap|ditaval|dll\\.config|dotsettings|filters|fsproj|fxml|glade|gmx|grxml|hzp|iml|ivy|jelly|jsproj|kml|launch|lvclass|lvlib|lvproj|mdpolicy|mjml|mxml|natvis|ndproj|nproj|nuspec|odd|osm|owl|pkgproj|proj|props|ps1xml|psc1|pt|qhelp|rdf|resx|rss|sch|sch|scxml|sfproj|shproj|srdf|storyboard|sublime\\x2dsnippet|targets|tml|ui|urdf|ux|vbproj|vcxproj|vsixmanifest|vssettings|vstemplate|vxml|wixproj|wsdl|wsf|wxi|wxl|wxs|x3d|xacro|xaml|xib|xlf|xliff|xmi|xml|xml\\.dist|xmp|xpl|xproc|xproj|xsd|xsp\\x2dconfig|xsp\\.metadata|xspec|xul|zcml)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.xml",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.xml.mdx",
"patterns": [
{
"include": "text.xml"
}
]
}
]
},
"commonmark-code-fenced-yaml": {
"patterns": [
{
"begin": "(?:^|\\G)[\\t ]*(`{3,})(?:[\\t ]*((?i:jar\\x2dmanifest|kaitai\\x2dstruct|oasv2\\x2dyaml|oasv3\\x2dyaml|unity3d\\x2dasset|yaml|yml|(?:.*\\.)?(?:anim|asset|ksy|lookml|mat|meta|mir|model\\.lkml|prefab|raml|reek|rviz|sublime\\x2dsyntax|syntax|unity|view\\.lkml|yaml\\x2dtmlanguage|yaml\\.sed|yml\\.mysql)))(?:[\\t ]+((?:[^\\n\\r`])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.yaml",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.yaml.mdx",
"patterns": [
{
"include": "source.yaml"
}
]
},
{
"begin": "(?:^|\\G)[\\t ]*(~{3,})(?:[\\t ]*((?i:jar\\x2dmanifest|kaitai\\x2dstruct|oasv2\\x2dyaml|oasv3\\x2dyaml|unity3d\\x2dasset|yaml|yml|(?:.*\\.)?(?:anim|asset|ksy|lookml|mat|meta|mir|model\\.lkml|prefab|raml|reek|rviz|sublime\\x2dsyntax|syntax|unity|view\\.lkml|yaml\\x2dtmlanguage|yaml\\.sed|yml\\.mysql)))(?:[\\t ]+((?:[^\\n\\r])+))?)(?:[\\t ]*$)",
"beginCaptures": {
"1": {
"name": "string.other.begin.code.fenced.mdx"
},
"2": {
"name": "entity.name.function.mdx",
"patterns": [
{
"include": "#markdown-string"
}
]
},
"3": {
"patterns": [
{
"include": "#markdown-string"
}
]
}
},
"contentName": "meta.embedded.yaml",
"end": "(?:^|\\G)[\\t ]*(\\1)(?:[\\t ]*$)",
"endCaptures": {
"1": {
"name": "string.other.end.code.fenced.mdx"
}
},
"name": "markup.code.yaml.mdx",
"patterns": [
{
"include": "source.yaml"
}
]
}
]
}
},
"scopeName": "source.mdx"
}