1
0
Эх сурвалжийг харах

Use Mardown code block for hover tooltip

Fathy Boundjadj 7 жил өмнө
parent
commit
407357f852

+ 1 - 1
src/languageFeatures.ts

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