Add support for markdown image/video path hovers (#209685)

This commit is contained in:
Matt Bierner
2024-04-05 13:29:31 -07:00
committed by GitHub
parent 8c363b460b
commit 6160e8e969
4 changed files with 19 additions and 6 deletions

View File

@@ -75,6 +75,9 @@ export async function startClient(factory: LanguageClientConstructor, parser: IM
return looksLikeMarkdownPath(resource);
},
},
markdown: {
supportHtml: true,
}
};
const client = factory('markdown', vscode.l10n.t("Markdown Language Server"), clientOptions);