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