vscode/extensions/markdown-math/language-configuration.json
2021-06-17 18:01:19 -07:00

57 lines
459 B
JSON

{
"comments": {
"lineComment": "%"
},
// symbols used as brackets
"brackets": [
[
"{",
"}"
],
[
"[",
"]"
],
[
"(",
")"
]
],
"autoClosingPairs": [
{
"open": "{",
"close": "}"
},
{
"open": "[",
"close": "]"
},
{
"open": "(",
"close": ")"
}
],
"surroundingPairs": [
[
"(",
")"
],
[
"[",
"]"
],
[
"{",
"}"
],
[
"'",
"'"
],
[
"\"",
"\""
]
]
}