在Next.js中向react-markdown内容中添加新元素,无需使用JSX
P粉184747536
P粉184747536 2024-01-17 09:50:24
0
1
664

我使用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>

P粉184747536
P粉184747536

全部回复(1)
P粉311617763

可能为段落节点类型使用了自定义渲染函数。我不确定,但可能会有所帮助。

import React from 'react';
import ReactMarkdown from 'react-markdown';

const renderers = {
  paragraph: ({ node, ...props }) => {
    return <p {...props}><span>在此添加您的附加内容</span>{node.children}</p>;
  },
  // 根据需要使用您的自定义渲染器
};

const content = '在此添加您的markdown内容';

const App = () => {
  return (
    <ReactMarkdown renderers={renderers}>
      {content}
    </ReactMarkdown>
  );
};

export default App;
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板