Support HTML comments in Markdown (#14573)

Because Java comment syntax is not valid in Markdown.
pull/15220/head
Faustino Aguilar 2016-11-08 17:14:36 -05:00 committed by Matt Bierner
parent 79a695b91d
commit 644b6c6b56
1 changed files with 3 additions and 5 deletions

View File

@ -1,11 +1,9 @@
{ {
"comments": { "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 // symbols used for start and end a block comment. Remove this entry if your language does not support block comments
"blockComment": [ "blockComment": [
"/*", "<!--",
"*/" "-->"
] ]
}, },
// symbols used as brackets // symbols used as brackets
@ -37,4 +35,4 @@
")" ")"
] ]
] ]
} }