Support HTML comments in Markdown (#14573)
Because Java comment syntax is not valid in Markdown.pull/15220/head
parent
79a695b91d
commit
644b6c6b56
|
@ -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 @@
|
||||||
")"
|
")"
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue