Markdown语法转义问题
来源:9-9 作业 完成文章详情页
linkscope
2020-10-17
按照老师提供的方法进行了一次Markdown的转义,但v-html并没有买账,直接原封不动展示了出来
将没有经过转义和转义过的打印了出来
两者之间存在转义符号的区别,目前如何解决?现在只有未经转义的才可正常显示。
写回答
2回答
-
张轩
2020-10-17
同学你好 我们的演示数据中有 html 的也有 markdown 的,html 是不需要进行 markdown 转移的,可以使用接口中的 isHTML 进行判断
代码如下
const currentPost = computed<PostProps>(() => store.getters.getCurrentPost(currentId)) const currentHTML = computed(() => { if (currentPost.value && currentPost.value.content) { const { isHTML, content } = currentPost.value return isHTML ? content : md.render(content) } })
30 -
weixin_慕田峪131215
2021-01-08
受教了
00
相似问题