We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f004bf7 commit 1ffe1b6Copy full SHA for 1ffe1b6
src/packages/frontend/jupyter/output-messages/mime-types/html.tsx
@@ -18,7 +18,10 @@ const Html = ({
18
}
19
return (
20
<div style={{ margin: "5px 0" }}>
21
- <StableUnsafeHtml html={value} docId={`${id}-${index}`} />
+ <StableUnsafeHtml
22
+ html={`<div class="cocalc-jupyter-rendered">${value}</div>`}
23
+ docId={`${id}-${index}`}
24
+ />
25
</div>
26
);
27
};
0 commit comments