This commit is contained in:
Andrew Pareles 2025-02-06 03:04:48 -08:00
parent 826d148305
commit 63efa219f5

View file

@ -193,11 +193,11 @@ const RenderToken = ({ token, nested = false, noSpace = false }: { token: Token
if (t.type === "html") { if (t.type === "html") {
return ( return (
<pre className={`bg-void-bg-2 p-4 rounded-lg ${noSpace ? '' : 'my-4'} font-mono text-sm`}> <div className={`bg-void-bg-2 p-4 rounded-lg ${noSpace ? '' : 'my-4'} font-mono text-sm`}>
<div>{`<html>`}</div> <div>{`<html>`}</div>
{t.raw} {t.raw}
<div>{`</html>`}</div> <div>{`</html>`}</div>
</pre> </div>
) )
} }