HiNinoJay / hexo-theme-A4

A hexo theme that looks like an A4 paper.(一个类A4纸张质感的hexo博客主题。)
https://ninojay.top
MIT License
320 stars 25 forks source link

代码块怎么没有渲染? #99

Closed HiNinoJay closed 8 months ago

HiNinoJay commented 8 months ago

我的markdown代码块怎么没渲染?

答:检查你的_config.yml文件(注意不是A4的配置文件),将hexo自带的highlight和prismjs设置为false。

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

经A4使用者测试:hexo-blog-encrypt插件可能会与代码块渲染冲突,禁用插件后可以正常显示代码块,我目前暂时使用hexo-hide-posts插件暂时隐藏文章(-,-)

A4 1.8.5版本已解决代码块渲染问题,无需再做以上操作

shufujian commented 8 months ago

我的markdown代码块怎么没渲染?

答:检查你的_config.yml文件(注意不是A4的配置文件),将hexo自带的highlight和prismjs设置为false。

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

经A4使用者测试:hexo-blog-encrypt插件可能会与代码块渲染冲突,禁用插件后可以正常显示代码块,我目前暂时使用hexo-hide-posts插件暂时隐藏文章(-,-)

我的也不渲染代码块。 image

已经修改了_config.yml文件对应的地方了: image

请求帮助,感谢 拜托,拜托

HiNinoJay commented 8 months ago

我看你的网站已经渲染了,本地应该是有缓存 记得 执行下 hexo clean

HiNinoJay commented 8 months ago

A4 1.8.5版本已解决代码块渲染问题,无需再做以上操作。