Versus
Versus
Hi, I have the same problem, I need to customize column headers with sub-headers in my project. is the feature can be used?
me too, I have the same issues.
+ 1
I have the same issue, `Incomplete content display~` happened to me. and it will stuck for a long time. no response!
我查看dom节点,发现有很多换行
还请麻烦指导一下
是不是应该在匹配节点末端,如 ``````,不添加换行?
暂时解决了这个问题,我在解析之前过滤了 \r\n ``` module.exports = (str,type,option)=>{ option = option || {}; let result; switch (type) { case 'markdown': let r = md(str) // 添加如下代码,过滤 \r\n r = r.replace(/(\r|\n){1,}/g, str =>...