hexo-wordcount

6.0.1 • Public • Published

Hexo-WordCount

npm npm npm

Installation

yarn add hexo-wordcount
# or 
npm i --save hexo-wordcount

Usage

字数统计 WordCount

wordcount(post.content)

阅读时长预计 Min2Read

min2read(post.content)

设置阅读速度 Set Reading Speed:

min2read(post.content, {cn: 300, en: 160})
// p.s. (v3.0.0 added)

总字数统计 TotalCount

totalcount(site)

Demo

Swig

Post Count:

   <span class="post-count">{{ wordcount(post.content) }}</span>

Post Minutes to Read:

   <span class="post-count">{{ min2read(post.content) }}</span>

Total Count:

   <span class="post-count">{{ totalcount(site) }}</span>

Ejs

Post Count:

   <span class="post-count"><%= wordcount(post.content) %></span>

Post Minutes to Read:

   <span class="post-count"><%= min2read(post.content) %></span>

Total Count:

   <span class="post-count"><%= totalcount(site) %></span>

Jade

Post Count:

   span.post-count= wordcount(post.content)

Post Minutes to Read:

    span.post-count= min2read(post.content)

Total Count:

   span.post-count= totalcount(site)

LICENSE

MIT

Alipay Donation(通过支付宝捐赠):

qr

Readme

Keywords

Package Sidebar

Install

npm i hexo-wordcount

Weekly Downloads

3,368

Version

6.0.1

License

MIT

Unpacked Size

3.42 kB

Total Files

3

Last publish

Collaborators

  • willin