提交 e4b55865 编写于 作者: M Matt Bierner

Ensure we use an encoded URI for the markdown styles

上级 f93afc56
...@@ -65,8 +65,9 @@ export class MDDocumentContentProvider implements vscode.TextDocumentContentProv ...@@ -65,8 +65,9 @@ export class MDDocumentContentProvider implements vscode.TextDocumentContentProv
} }
// Use href if it is already an URL // Use href if it is already an URL
if (['file', 'http', 'https'].indexOf(vscode.Uri.parse(href).scheme) >= 0) { const hrefUri = vscode.Uri.parse(href);
return href; if (['file', 'http', 'https'].indexOf(hrefUri.scheme) >= 0) {
return hrefUri.toString();
} }
// Use href as file URI if it is absolute // Use href as file URI if it is absolute
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册