Use below `MarkupContent` to return hover and completion in [LSP sample](https://github.com/microsoft/vscode-extension-samples/tree/master/lsp-sample): ```ts const markupContent: MarkupContent = { kind: 'markdown', value: ` [I'm an inline-style link](https://www.google.com)` }; ```  