Skip to content

Commit 1bc95ee

Browse files
authored
Use supportHtml (#4975)
1 parent 27858d6 commit 1bc95ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/issues/util.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ export async function issueMarkdown(
204204
commentNumber?: number,
205205
): Promise<vscode.MarkdownString> {
206206
const markdown: vscode.MarkdownString = new vscode.MarkdownString(undefined, true);
207-
markdown.isTrusted = true;
207+
markdown.supportHtml = true;
208208
const date = new Date(issue.createdAt);
209209
const ownerName = `${issue.remote.owner}/${issue.remote.repositoryName}`;
210210
markdown.appendMarkdown(

0 commit comments

Comments
 (0)