remove some code, bring some code back

This commit is contained in:
Johannes Rieken
2017-11-15 15:08:21 +01:00
parent 51f2531b88
commit 2da0f2215f
2 changed files with 5 additions and 10 deletions

View File

@@ -27,6 +27,11 @@ export class MarkdownString implements IMarkdownString {
return this;
}
appendMarkdown(value: string): MarkdownString {
this.value += value;
return this;
}
appendCodeblock(langId: string, code: string): MarkdownString {
this.value += '\n```';
this.value += langId;