We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e79a6a commit 0661478Copy full SHA for 0661478
components/markdown-renderer.tsx
@@ -528,6 +528,21 @@ export default function MarkdownRenderer({
528
/>
529
</span>
530
),
531
+ mark: ({ children }: { children?: React.ReactNode }) => (
532
+ <mark className="bg-transparent text-[#14b8a6] font-medium px-0.5">
533
+ {children}
534
+ </mark>
535
+ ),
536
+ em: ({ children }: { children?: React.ReactNode }) => (
537
+ <em className="text-[#9333ea] italic">
538
539
+ </em>
540
541
+ strong: ({ children }: { children?: React.ReactNode }) => (
542
+ <strong className="text-[#f97316] font-bold">
543
544
+ </strong>
545
546
};
547
548
return (
0 commit comments