ele828 / hexo-prism-plugin

Hexo plugin for code highlighting by prism.js, supporting JSX syntax
204 stars 51 forks source link

hexo版本为5.2.0的时候,花括号显示为字符串‘{’和‘&#125’ #61

Open yuang01 opened 3 years ago

sdwh commented 3 years ago

I got same problems. I just go to index.js to do some fix like below:

const map = {
  ''': '\'',
  '&': '&',
  '>': '>',
  '&lt;': '<',
  '&quot;': '"',
  '&#123;': '{',
  '&#125;': '}'
};

Then it works.

ryanzhouff commented 3 years ago

I got same problems. I just go to index.js to do some fix like below:

const map = {
  '&#39;': '\'',
  '&amp;': '&',
  '&gt;': '>',
  '&lt;': '<',
  '&quot;': '"',
  '&#123;': '{',
  '&#125;': '}'
};

Then it works.

PR will be welcomed.