【开发笔记】【6】Hexo配置

本文最后更新于:2021年12月22日 上午

【开发笔记】系列目录


目录

一、常用命令

二、常用插件

  1.字数统计和阅读时长(网站底部/文章内)

  2.链接转换

  3.本地搜索

  4.文章底部增加版权声明

  5.next主题增加访问统计


一、常用命令

1
2
3
4
hexo n "我的博客" == hexo new "我的博客" #新建文章
hexo g == hexo generate#生成
hexo s == hexo server #启动服务预览
hexo d == hexo deploy#部署

发布时,使用:

1
hexo clean && hexo g && hexo d

二、常用插件

  1.字数统计和阅读时长(网站底部/文章内)

1
2
3
4
5
6
# hexo-symbols-count-time,统计字数,预计阅读时间
symbols_count_time:
symbols: true
time: true
total_symbols: true
total_time: true

  2.链接转换

1
2
3
4
5
# hexo-abbrlink,链接转换
root: /
# 更改 permalink 值
# permalink: :year/:month/:day/:title/
permalink: post/:abbrlink.html

  3.本地搜索

1
2
3
4
5
6
# hexo-generator-searchdb,本地搜索
search:
path: search.xml
field: post
format: html
limit: 10000

  4.文章底部增加版权声明

1
2
3
4
# hexo-addlink 文章底部增加版权声明
addlink:
before_text: __本文作者__:XieBangyao<br />__邮箱__:xiebangyao_1994@163.com<br />__本文地址__:
after_text: <br />__版权声明__:转载请注明出处!

  5.next主题增加访问统计

1. 打开next主题配置文件/themes/next/_config.yml

在这个文件搜索busuanzi,修改enable为true

1
2
3
4
5
6
7
8
busuanzi_count:
enable: true //此处修改为true
total_visitors: true
total_visitors_icon: user
total_views: true
total_views_icon: eye
post_views: true
post_views_icon: eye

在这个文件搜索footer,在他子项中添加counter,并设置为true

1
2
#统计
counter: true

2.打开next主题下的文件/themes/next/layout/_partials/footer.swig,输入

1
2
3
{% if theme.footer.counter %}
<script async src="//dn-lbstatics.qbox.me/busuanzi/2.3/busuanzi.pure.mini.js"></script>
{% endif %}

联系方式

邮箱: xiebangyao_1994@163.com

相关账号: