我使用react-markdown构建虚拟DOM,它允许只更新变化的DOM而不是完全重写。它生成
标签中的内容。我想在
标签内添加标签。
<ReactMarkdown components={ { code({ node, inline, className, children, ...props }) { const match = /language-(\w+)/.exec(className || ''); return !inline && match ? ( <SyntaxHighlighter {...props} style={a11yDark} language={match[1]} PreTag="div" > {String(children).replace(/\n$/, '')} </SyntaxHighlighter> ) : ( <code {...props} className={className}> {children} </code> ); }, }} > {content} </ReactMarkdown>
可能为段落节点类型使用了自定义渲染函数。我不确定,但可能会有所帮助。