hexo-prism-plugin
hexo-prism-plugin copied to clipboard
hexo版本为5.2.0的时候,花括号显示为字符串‘{’和‘}’
I got same problems. I just go to index.js to do some fix like below:
const map = {
''': '\'',
'&': '&',
'>': '>',
'<': '<',
'"': '"',
'{': '{',
'}': '}'
};
Then it works.
I got same problems. I just go to index.js to do some fix like below:
const map = { ''': '\'', '&': '&', '>': '>', '<': '<', '"': '"', '{': '{', '}': '}' };
Then it works.
PR will be welcomed.