0%

log20210815

20210815

晚上在deploy的时候出现了新的问题:error spawn failed,尝试多种方法均不成功,最后发现是deploy中的repo出现了问题。
另外,在部署的博客中发现点击目录无响应以及目录显示不全的情况,现已修正。

部署问题

把博客根目录下的_config.yml文件中的deploy下的repo更改为即可

1
2
3
4
deploy:
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
10
toc:
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上老哥的操作,极其顺利。参考链接如下:

nexT主题下目录点击跳转