Default Markdown language configuration (#28172)

* 🔧 renew Markdown lang config

* 🎨 format
This commit is contained in:
Yu Zhang 2017-06-08 05:53:54 +08:00 committed by Matt Bierner
parent d173d8ecc1
commit fc2b063fa2

View file

@ -8,31 +8,41 @@
},
// symbols used as brackets
"brackets": [
[
"{",
"}"
],
[
"[",
"]"
],
[
"(",
")"
]
["{", "}"],
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
[
"{",
"}"
],
[
"[",
"]"
],
[
"(",
")"
]
{
"open": "{",
"close": "}"
},
{
"open": "[",
"close": "]"
},
{
"open": "(",
"close": ")"
},
{
"open": "<",
"close": ">",
"notIn": [
"string"
]
},
{
"open": "`",
"close": "`",
"notIn": [
"string"
]
}
],
"surroundingPairs": [
["(", ")"],
["[", "]"],
["`", "`"]
]
}
}