替换HEXO主题为Keep
RainNot 炉火纯青

2021-08-10

替换主题为keep 3.4.3

2022-04-17

主要解决的是博客中出现的脚注问题,先后安装了未更新的两个插件,他们分别是:

  1. hexo-reference
  2. hexo-footnotes

这两个插件后来都不更新了,在hexo-footnotesgithub主页才看到这样一句话:
This plugin is no longer maintained, I recommend you to use hexo-renderer-markdown-it which supports footnotes and many more features.
因此,在安装了hexo-referencehexo-footnotes两个插件之后,都会导致脚注的序号出现重复,如下所示:
脚注序号出现错误
因此,使用npm命令删除两款插件,命令如下:

1
2
npm list ##显示所有插件
npm uninstall 插件名称 --save ##删除插件

然后安装hexo-renderer-markdown-it插件,根据其github主页来进行配置。
安装按成之后,在hexo站点根目录下编辑config.yml文件,增加如下配置代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
markdown:
preset: 'default'
render:
html: true
xhtmlOut: false
langPrefix: 'language-'
breaks: true
linkify: true
typographer: true
quotes: '“”‘’'
enable_rules:
disable_rules:
plugins:
- markdown-it-footnote ##脚注插件,包含在hexo-renderer-markdown-it
anchors:
level: 2
collisionSuffix: ''
permalink: false
permalinkClass: 'header-anchor'
permalinkSide: 'left'
permalinkSymbol: '¶'
case: 0
separator: '-'

这时候,脚注功能已经正常显示了,如下图所示:
脚注已经正常显示

 评论
评论插件加载失败
正在加载评论插件
由 Hexo 驱动 & 主题 Keep
本站由 提供部署服务
总字数 7.9k 访客数 访问量