From 5ce25e20c333284a655203bf28c6f3984495cddd Mon Sep 17 00:00:00 2001 From: Andrew Pareles Date: Thu, 6 Feb 2025 03:10:07 -0800 Subject: [PATCH] css for md tags --- .../browser/react/src/markdown/ChatMarkdownRender.tsx | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/vs/workbench/contrib/void/browser/react/src/markdown/ChatMarkdownRender.tsx b/src/vs/workbench/contrib/void/browser/react/src/markdown/ChatMarkdownRender.tsx index 0bbb573b..ec0d2241 100644 --- a/src/vs/workbench/contrib/void/browser/react/src/markdown/ChatMarkdownRender.tsx +++ b/src/vs/workbench/contrib/void/browser/react/src/markdown/ChatMarkdownRender.tsx @@ -188,16 +188,14 @@ const RenderToken = ({ token, nested = false, noSpace = false }: { token: Token if (nested) return contents - return

{contents}

+ return

{contents}

} if (t.type === "html") { return ( -
-
{``}
+

{t.raw} -

{``}
-
+

) }