import React, { useMemo } from 'react'; import styles from './markdown.module.css'; import ReactMarkdown from 'react-markdown'; import rehypeSanitize, { defaultSchema } from 'rehype-sanitize'; import remarkGfm from 'remark-gfm'; import supersub from 'remark-supersub'; interface MarkdownProps { content: string; } const MAX_LENGTH_FOR_GFM = 10000; // remarkGfm lags with large content const blockquoteToGreentext = () => (tree: any) => { tree.children.forEach((node: any) => { if (node.type === 'blockquote') { node.children.forEach((child: any) => { if (child.type === 'paragraph' && child.children.length > 0) { const prefix = { type: 'text', value: '>', }; child.children.unshift(prefix); } }); node.type = 'div'; node.data = { hName: 'div', hProperties: { className: 'greentext', }, }; } }); }; const Markdown = ({ content }: MarkdownProps) => { const remarkPlugins: any[] = [[supersub]]; if (content && content.length <= MAX_LENGTH_FOR_GFM) { remarkPlugins.push([remarkGfm, { singleTilde: false }]); } const customSchema = useMemo( () => ({ ...defaultSchema, tagNames: [...(defaultSchema.tagNames || []), 'div'], attributes: { ...defaultSchema.attributes, div: ['className'], }, }), [], ); remarkPlugins.push([blockquoteToGreentext]); return ( {src}, video: ({ src }) => {src}, iframe: ({ src }) => {src}, source: ({ src }) => {src}, hr: () => (

), }} />
); }; export default React.memo(Markdown);