Support HTML comments in Markdown (#14573)

Because Java comment syntax is not valid in Markdown.
This commit is contained in:
Faustino Aguilar 2016-11-08 17:14:36 -05:00 committed by Matt Bierner
parent 79a695b91d
commit 644b6c6b56

View file

@ -1,11 +1,9 @@
{
"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
@ -37,4 +35,4 @@
")"
]
]
}
}