vscode/extensions/markdown/language-configuration.json
Faustino Aguilar 644b6c6b56 Support HTML comments in Markdown (#14573)
Because Java comment syntax is not valid in Markdown.
2016-11-08 14:14:36 -08:00

39 lines
403 B
JSON

{
"comments": {
// 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": [
[
"{",
"}"
],
[
"[",
"]"
],
[
"(",
")"
]
],
"autoClosingPairs": [
[
"{",
"}"
],
[
"[",
"]"
],
[
"(",
")"
]
]
}