装包
yarn add react-markdown rehype-raw remark-gfm remark-math rehype-mathjax
javascript
import ReactMarkdown, { Components } from 'react-markdown'
import rehypeRaw from 'rehype-raw'
import remarkGfm from 'remark-gfm'
import remarkMath from 'remark-math'
import rehypeMathjax from 'rehype-mathjax'
<ReactMarkdown
rehypePlugins={[rehypeRaw, rehypeMathjax]}
remarkPlugins={[remarkGfm, remarkMath]}
>
{item.content}
</ReactMarkdown>