20210815
晚上在deploy的时候出现了新的问题:
error spawn failed
,尝试多种方法均不成功,最后发现是deploy
中的repo
出现了问题。
另外,在部署的博客中发现点击目录无响应以及目录显示不全的情况,现已修正。
部署问题
把博客根目录下的_config.yml
文件中的deploy
下的repo
更改为即可1
2
3
4deploy:
type: git
repo: git@github.com:xxx/xxx.github.io.git
branch: master
目录问题
目录出现显示不全和点击不发生跳转问题,现已解决
显示不全
把next
下的_config.yml
文件下的toc
下的所有选项全部选true
,如下,即可1
2
3
4
5
6
7
8
9
10toc:
enable: true
# Automatically add list number to toc.
number: true
# If true, all words will placed on next lines if header width longer then sidebar width.
wrap: true
# If true, all level of TOC in a post will be displayed, rather than the activated part of it.
expand_all: true
# Maximum heading depth of generated toc.
max_depth: 6
点击跳转
参考github上老哥的操作,极其顺利。参考链接如下: