Hexo文章计数插件
本插件只统计中文字数和英文单词次数。适合写文字的爱好者,像我喜欢写作需要看字数。
hexo-wordcount的项目地址:
https://www.npmjs.com/package/hexo-wordcount
安装
npm install hexo-wordcount --save
使用
修改Themes模板文件,在Post文章模板区域加入:
即可统计单篇文章的字数。
<span class="post-count">{{ wordcount(post.content) }}</span>
统计总字数的,可以放到Footer或其他位置里。
<span class="post-count">{{ totalcount(site) }}</span>
在footer.swig文件中加入下面代码
<div class="theme-info"> <div class="powered-by"></div>
<span class="post-count">博客全站共{{ totalcount(site) }}字</span>
</div>
参考
查看更多详细的资料,参考地址:
https://github.com/willin/hexo-wordcount
hexo-wordcount实现文章标题栏显示更多的文章信息:
http://joryhe.coding.me/2016-06-06-hexo_wordcount_setting_your_post.html
hexo使用小记: