Use Mardown code block for hover tooltip

This commit is contained in:
Fathy Boundjadj 2018-05-13 03:19:41 +02:00
parent 64641eebb2
commit 407357f852
No known key found for this signature in database
GPG key ID: CB7D284BFF26088C

View file

@ -330,7 +330,7 @@ export class QuickInfoAdapter extends Adapter implements monaco.languages.HoverP
return {
range: this._textSpanToRange(resource, info.textSpan),
contents: [{
value: contents
value: '```js\n' + contents + '\n```\n'
}, {
value: documentation + (tags ? '\n\n' + tags : '')
}]