0%

hexo 博客搭建之文章字数统计

对于阅读者来说,提供文章字数统计、阅读时长可以起到友好的提示作用。

1. 安装字数统计插件

Github: hexo-symbols-count-time

1
$ npm install hexo-symbols-count-time --save

2. 编辑 站点配置文件:_config.yml,进行个性化配置

安装完插件后其默认配置已自动开启文章字数统计。

1
2
3
4
5
6
7
8
9
symbols_count_time:
symbols: true
time: true
total_symbols: true
total_time: true
exclude_codeblock: false
awl: 4
wpm: 275
suffix: "mins."

中文博客推荐设置 awl:2wpm: 300

编辑 主题配置文件:_config.yml ,配置如下(next 主题默认已配置):

1
2
3
4
symbols_count_time:
separated_meta: true
item_text_post: true
item_text_total: false