Use / for md paths, even on windows (#149120)

Fixes #149010
This commit is contained in:
Matt Bierner 2022-05-09 15:22:44 -07:00 committed by GitHub
parent a6000ad174
commit a6dd083a7e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -57,7 +57,7 @@ export function registerDropIntoEditor(selector: vscode.DocumentSelector) {
const snippet = new vscode.SnippetString();
uris.forEach((uri, i) => {
const mdPath = document.uri.scheme === uri.scheme
? encodeURI(path.relative(URI.Utils.dirname(document.uri).fsPath, uri.fsPath))
? encodeURI(path.relative(URI.Utils.dirname(document.uri).fsPath, uri.fsPath).replace(/\\/g, '/'))
: uri.toString(false);
const ext = URI.Utils.extname(uri).toLowerCase();