本地展示markdown有时候能展示出来有时候展示不出来,线上无法展示,尤其是遍历展示md。
安装react-markdown,node版本切换为16:
yarn add react-markdown
nvm use 16
// 不更换版本,报错信息如下
// pdfjs-dist@3.6.172: The engine "node" is incompatible with this module. Expected version ">=16". Got "14.17.6"
使用:
import ReactMarkdown from 'react-markdown'
<ReactMarkdown>{md}</ReactMarkdown>