hexo-prism-plugin代码高亮错误解决
问题描述
使用代码高亮插件后,花括号显示为字符串‘{’和‘}’ 怎么办?
已解决:
在node_modules\hexo-prism-plugin\src\index.js文件中修改如下代码
const map = {
''': '\'',
'&': '&',
'>': '>',
'<': '<',
'"': '"',
'{': '{',
'}': '}'
};