We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2854996 commit 4e7666dCopy full SHA for 4e7666d
1 file changed
extensions/markdown/src/markdownEngine.ts
@@ -113,7 +113,7 @@ export class MarkdownEngine {
113
md.normalizeLink = (link: string) => {
114
try {
115
let uri = vscode.Uri.parse(link);
116
- if (!uri.scheme) {
+ if (!uri.scheme && !uri.fragment) {
117
// Assume it must be a file
118
if (uri.path[0] === '/') {
119
uri = vscode.Uri.file(path.join(vscode.workspace.rootPath, uri.path));
0 commit comments