We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a90bfa commit a15284cCopy full SHA for a15284c
src/lib.rs
@@ -443,7 +443,10 @@ impl BackendState {
443
value: format!("{description}\n```{}\n{}\n```",doc.language_id, s.body),
444
})
445
} else {
446
- Documentation::String(s.body.to_string())
+ Documentation::MarkupContent(MarkupContent{
447
+ kind: MarkupKind::Markdown,
448
+ value: format!("```{}\n{}\n```",doc.language_id, s.body),
449
+ })
450
}),
451
text_edit: Some(CompletionTextEdit::InsertAndReplace(InsertReplaceEdit {
452
replace: range,
0 commit comments