blinkfox / hexo-theme-matery

A beautiful hexo blog theme with material design and responsive design.一个基于材料设计和响应式设计而成的全面、美观的Hexo主题。国内访问:http://blinkfox.com
https://blinkfox.github.io/
Apache License 2.0
5.24k stars 1.25k forks source link

代码块显示异常 #777

Open bohr777 opened 2 years ago

bohr777 commented 2 years ago

默认配置下代码块是这样的 image 演示站点中代码块是这样的 image 是哪里出了问题呢

Sagiri-kawaii01 commented 2 years ago

首先执行npm uninstall hexo-prism-plugin 然后在根配置文件中修改代码高亮配置为:

highlight:
  enable: false
  line_number: true
  auto_detect: false
  tab_replace: ''
  wrap: true
  hljs: false
prismjs:
  enable: true
  preprocess: true
  line_number: true
  tab_replace: ''

最后执行hexo cleanhexo server

Snowfly-Guo commented 2 years ago

@oneoness 非常感谢

wulalacho commented 2 years ago

首先执行npm uninstall hexo-prism-plugin 然后在根配置文件中修改代码高亮配置为:

highlight:
  enable: false
  line_number: true
  auto_detect: false
  tab_replace: ''
  wrap: true
  hljs: false
prismjs:
  enable: true
  preprocess: true
  line_number: true
  tab_replace: ''

最后执行hexo cleanhexo server

非常感谢