vscode/extensions/markdown/language-configuration.json

41 lines
565 B
JSON
Raw Normal View History

2016-05-21 07:39:12 +00:00
{
2016-05-23 17:38:31 +00:00
"comments": {
// symbols used for start and end a block comment. Remove this entry if your language does not support block comments
"blockComment": [
"<!--",
"-->"
2016-05-23 17:38:31 +00:00
]
},
// symbols used as brackets
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
2016-06-20 09:42:55 +00:00
],
"autoClosingPairs": [
{
"open": "{",
"close": "}"
},
{
"open": "[",
"close": "]"
},
{
"open": "(",
"close": ")"
},
{
"open": "<",
"close": ">",
"notIn": [
"string"
]
}
],
"surroundingPairs": [
["(", ")"],
["[", "]"],
["`", "`"]
2016-05-23 17:38:31 +00:00
]
}