MCPcopy Create free account
hub / github.com/deepnote/vscode-deepnote / appendText

Method appendText

src/test/mocks/vsc/extHostedTypes.ts:1255–1259  ·  view source on GitHub ↗
(value: string)

Source from the content-addressed store, hash-verified

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;

Callers

nothing calls this directly

Calls 1

replaceMethod · 0.45

Tested by

no test coverage detected