Closed
Description
Feature request
Allow configuring a base uri that is used when rendering the contents of a MarkdownString
. This uri would be used when resolving relative paths that appear as links or image links within the markdown string
Example use case
const md = new vscode.MarkdownString(`
[link](toSiblingFile.md)

`);
md.baseUri = vscode.window.activeTextEditor.document.uri
When rendered, link
and img
should both resolve to files next to the currently active file