1.插件

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

# hexo-symbols-count-time,统计字数,预计阅读时间
symbols_count_time:
  symbols: true
  time: true
  total_symbols: true
  total_time: true

b)、转换连接

hexo-abbrlink config

root: /
# 更改 permalink 值
# permalink: :year/:month/:day/:title/
permalink: post/:abbrlink.html

c)、本地搜索

# hexo-generator-searchdb,本地搜索
search:
  path: search.xml
  field: post
  format: html
  limit: 10000

d)、文章底部增加版权声明

# hexo-addlink 文章底部增加版权声明
addlink:
  before_text: __本文作者__:XieBangyao<br />__邮箱__:[email protected]<br />__本文地址__:
  after_text: <br />__版权声明__:转载请注明出处!
03-05 23:07