mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 05:50:11 +01:00
Merge pull request #4210 from kokovtsev/fix/json-markdown-descriptions
fix: enable markdown in JSON completion details
This commit is contained in:
commit
2122b33813
1 changed files with 4 additions and 1 deletions
|
|
@ -32,7 +32,10 @@ export class JSONWorker {
|
|||
return resolvePath(base, relativePath);
|
||||
}
|
||||
},
|
||||
schemaRequestService: createData.enableSchemaRequest ? defaultSchemaRequestService : undefined
|
||||
schemaRequestService: createData.enableSchemaRequest
|
||||
? defaultSchemaRequestService
|
||||
: undefined,
|
||||
clientCapabilities: jsonService.ClientCapabilities.LATEST
|
||||
});
|
||||
this._languageService.configure(this._languageSettings);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue