소스 검색

Use Mardown code block for hover tooltip

Fathy Boundjadj 7 년 전
부모
커밋
407357f852
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/languageFeatures.ts

+ 1 - 1
src/languageFeatures.ts

@@ -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 : '')
 				}]