import { Box, Button, useMantineTheme } from "@mantine/core"; import React, { lazy } from "react"; import { Prism as SyntaxHighlighter } from "react-syntax-highlighter"; import syntaxHighlighterStyle from "react-syntax-highlighter/dist/esm/styles/prism/one-dark"; import rehypeExternalLinks from "rehype-external-links"; import remarkGfm from "remark-gfm"; const Markdown = lazy(() => import("react-markdown")); const CopyIconButton = lazy(() => import("./CopyIconButton")); interface MarkdownRendererProps { content: string; enableCopy?: boolean; className?: string; } export default function MarkdownRenderer({ content, enableCopy = true, className = "", }: MarkdownRendererProps) { const theme = useMantineTheme(); if (!content) { return null; } return ( {children} ); }, li(props) { const { children } = props; const processedChildren = React.Children.map(children, (child) => { if (React.isValidElement(child) && child.type === "p") { return (child.props as { children: React.ReactNode }).children; } return child; }); return
  • {processedChildren}
  • ; }, pre(props) { return <>{props.children}; }, code(props) { const { children, className, node, ref, ...rest } = props; void node; const languageMatch = /language-(\w+)/.exec(className || ""); const codeContent = children?.toString().replace(/\n$/, "") ?? ""; if (languageMatch) { return ( {enableCopy && ( )} {codeContent} ); } return ( {children} ); }, }} > {content}
    ); }