Skip to content

Commit

Permalink
support HTML and trust ddoc markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
WebFreak001 committed Jul 14, 2023
1 parent 466ac04 commit 732a34c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,11 @@ async function startClient(context: vscode.ExtensionContext) {
},
revealOutputChannelOn: RevealOutputChannelOn.Never,
outputChannel: outputChannel,
errorHandler: new CustomErrorHandler(outputChannel)
errorHandler: new CustomErrorHandler(outputChannel),
markdown: {
isTrusted: true,
supportHtml: true
}
};
let client = new LanguageClient("serve-d", "code-d & serve-d", executable, clientOptions);
await client.start();
Expand Down

0 comments on commit 732a34c

Please sign in to comment.