(value: string)
| 1253 | } |
| 1254 | |
| 1255 | appendText(value: string): MarkdownString { |
| 1256 | // escape markdown syntax tokens: http://daringfireball.net/projects/markdown/syntax#backslash |
| 1257 | this.value += value.replace(/[\\`*_{}[\]()#+\-.!]/g, '\\$&'); |
| 1258 | return this; |
| 1259 | } |
| 1260 | |
| 1261 | appendMarkdown(value: string): MarkdownString { |
| 1262 | this.value += value; |