vscode/extensions/markdown/markdown.configuration.json

26 lines
432 B
JSON
Raw Normal View History

2016-05-21 07:39:12 +00:00
{
2016-05-23 17:38:31 +00:00
"comments": {
// symbol used for single line comment. Remove this entry if your language does not support line comments
"lineComment": "//",
// symbols used for start and end a block comment. Remove this entry if your language does not support block comments
"blockComment": [
"/*",
"*/"
]
},
// symbols used as brackets
"brackets": [
[
"{",
"}"
],
[
"[",
"]"
],
[
"(",
")"
]
]
2016-05-21 07:39:12 +00:00
}