Skip to content

Commit

Permalink
re #98100.
Browse files Browse the repository at this point in the history
  • Loading branch information
rebornix committed Jun 25, 2020
1 parent a75fefa commit c149311
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ class RichRenderer implements IOutputTransformContribution {
let data = output.data['text/markdown'];
const str = (isArray(data) ? data.join('') : data) as string;
const mdOutput = document.createElement('div');
mdOutput.appendChild(this._mdRenderer.render({ value: str, isTrusted: false, supportThemeIcons: true }).element);
mdOutput.appendChild(this._mdRenderer.render({ value: str, isTrusted: true, supportThemeIcons: true }).element);
container.appendChild(mdOutput);

return {
Expand Down

0 comments on commit c149311

Please sign in to comment.