【发布时间】:2021-10-31 16:58:37
【问题描述】:
目前我正在使用 React,并且我在strapi CMS 中的富文本中的内容在我的降价版本中以我想要的方式隔开,但是一旦我切换到预览,或在我的浏览器中查看内容,空间消失。我已经尝试添加<br/>标签,但仍然没有换行。
这是我当前的代码:
import ReactMarkdown from "react-markdown";
import rehypeRaw from "rehype-raw";
export default function name({ posts }) {
return (
<>
<div>
{posts.Title}
</div>
<div>
<ReactMarkdown children={posts.Content} rehypePlugins={[rehypeRaw]} />
</div>
</>
);
}
【问题讨论】:
-
@John no 所以我尝试添加 在一行的末尾和 \n 也是,但两者都没有给我输出
标签: reactjs strapi react-markdown