目前我正在使用 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>
</>
);
}