From 644b6c6b56740b70d98be87b658b20ce281cce4b Mon Sep 17 00:00:00 2001 From: Faustino Aguilar Date: Tue, 8 Nov 2016 17:14:36 -0500 Subject: [PATCH] Support HTML comments in Markdown (#14573) Because Java comment syntax is not valid in Markdown. --- extensions/markdown/language-configuration.json | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/extensions/markdown/language-configuration.json b/extensions/markdown/language-configuration.json index d0a01b172c9..fd6cd6a1469 100644 --- a/extensions/markdown/language-configuration.json +++ b/extensions/markdown/language-configuration.json @@ -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 @@ ")" ] ] -} \ No newline at end of file +}