import { Fragment, memo } from "react" import { default as ReactMarkdown } from "react-markdown" import { ReactMarkdownOptions } from "react-markdown/lib/react-markdown" type FestaMarkdownRendererProps = Omit & { code: string, } /** * Component rendering Markdown source with {@link ReactMarkdown}, using some custom settings to better handle user input. * * Currently, it converts `h1` and `h2` into `h3`, and disables the rendering of `img` elements. */ export const FestaMarkdownRenderer = memo(({ code, ...props }: FestaMarkdownRendererProps) => { return ( (<>), // images reveal the IP of the user to third parties! ...props.components, }} > {code} ) }) FestaMarkdownRenderer.displayName = "FestaMarkdownRenderer"