在我的 reactJS 项目中,我有一个表单来输入名称和描述。提交后它应该显示为一个列表。我必须实现的是描述应该正确显示。为此,我尝试了摊牌(https://github.com/showdownjs/showdown)。在服务器端,我按照文档中的说明进行了配置。
import showdown from "showdown";
let converter = new showdown.Converter(),
html = "",
flag = false;
for (let i = 0; i < result.data.length; i++) {
html = converter.makeHtml(result.data[i].description); //this description field i want to showdown
}
我得到的输出是:
<p>description</p>
但我真正需要的是:
a. abc:
i) abc,
ii) abc,
iii) abc,
iv) abc
我如何做到这一点?有什么帮助吗?