import React from "react"; import { ExtraProps } from "react-markdown"; import { Prism as SyntaxHighlighter } from "react-syntax-highlighter"; import { vscDarkPlus } from "react-syntax-highlighter/dist/esm/styles/prism"; // See https://github.com/remarkjs/react-markdown?tab=readme-ov-file#use-custom-components-syntax-highlight /** * Component to render code blocks in markdown. */ export function code({ children, className, }: React.ClassAttributes & React.HTMLAttributes & ExtraProps) { const match = /language-(\w+)/.exec(className || ""); // get the language if (!match) { const isMultiline = String(children).includes("\n"); if (!isMultiline) { return ( {children} ); } return (
        {String(children).replace(/\n$/, "")}
      
); } return ( {String(children).replace(/\n$/, "")} ); }