Hexo常用插件介绍 hexo-symbols-count-time

hexo-symbols-count-time 可以用来显示一篇博客的字数统计信息和估计的阅读时间,也可以用来显示整个整点的文字数量统计信息。

安装

安装 hexo-symbols-count-time 非常简单,只需要执行:

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

如果你使用 yarn, 则执行

1
yarn add hexo-symbols-count-time

配置

站点配置

首先需要在编辑站点级的 _config.yml 文件,加入以下配置信息:

1
2
3
4
5
6
symbols_count_time:
symbols: true
time: true
total_symbols: true
total_time: true
exclude_codeblock: false

Next 主题配置

在 Next 主题的配置文中确认以下配置信息存在:

1
2
3
4
5
6
7
symbols_count_time:
separated_meta: true
item_text_post: true
item_text_total: false
awl: 4
wpm: 275
suffix: mins.

注意: 使用 Next 6.3 以上的版本

在配置项中的:
awl(Average Word Length)的数值是设定多少字符统计为一个字(word),中文博客建议设置为 2。
wpm(Words Per Minute)是假设的读者阅读速度,多少字(word)统计为阅读时长一分钟。官方文档里的一些参考值:
慢速:200
中速:275(默认)
快速:350

对于中文为主的博客,官方建议值为awl=2,wpm=300。

本文标题:Hexo常用插件介绍 hexo-symbols-count-time

文章作者:Morning Star

发布时间:2019年08月17日 - 14:08

最后更新:2021年04月16日 - 15:04

原始链接:https://www.mls-tech.info/hexo/hexo-plugin-symbols-count-time/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。