|
|
@ -129,6 +129,7 @@ export namespace Hovers { |
|
|
|
message = `${diff}\n---\n\nChanges ${previous} ${GlyphChars.ArrowLeftRightLong} ${current} | ${message}`; |
|
|
|
|
|
|
|
const markdown = new MarkdownString(message, true); |
|
|
|
markdown.supportHtml = true; |
|
|
|
markdown.isTrusted = true; |
|
|
|
return markdown; |
|
|
|
} |
|
|
@ -174,6 +175,7 @@ export namespace Hovers { |
|
|
|
} ${current}${message == null ? '' : ` | ${message}`}`;
|
|
|
|
|
|
|
|
const markdown = new MarkdownString(message, true); |
|
|
|
markdown.supportHtml = true; |
|
|
|
markdown.isTrusted = true; |
|
|
|
return markdown; |
|
|
|
} |
|
|
@ -238,6 +240,7 @@ export namespace Hovers { |
|
|
|
}); |
|
|
|
|
|
|
|
const markdown = new MarkdownString(details, true); |
|
|
|
markdown.supportHtml = true; |
|
|
|
markdown.isTrusted = true; |
|
|
|
return markdown; |
|
|
|
} |
|
|
|