We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e125e0a commit cd3a3eaCopy full SHA for cd3a3ea
1 file changed
src/vs/workbench/api/common/extHostTypes.ts
@@ -1252,7 +1252,7 @@ export class MarkdownString {
1252
// escape markdown syntax tokens: http://daringfireball.net/projects/markdown/syntax#backslash
1253
this.value += (this.supportThemeIcons ? escapeCodicons(value) : value)
1254
.replace(/[\\`*_{}[\]()#+\-.!]/g, '\\$&')
1255
- .replace('\n', '\n\n');
+ .replace(/\n/, '\n\n');
1256
1257
return this;
1258
}
0 commit comments