插件 (防止丢失)

  1. hexo-deplayer-git
1
npm install hexo-deployer-git --save
  1. hexo-asset-image
    不必多说,必装的图片插件
1
npm install hexo-asset-image --save
**_config.yml** 配置文件
1
post_asset_folder: false改为true
  1. hexo-abbrlink
    解决站点链接中文编码问题(此插件会与图片插件产生冲突,解决方案参考此文章)
1
npm install hexo-abbrlink --save

_config.yml 配置文件

1
2
3
4
5
6
# permalink: :year/:month/:day/:title/
# permalink_defaults:
permalink: posts/:abbrlink.html
abbrlink:
# alg: crc32 #算法: crc16(default) and crc32
rep: dec #进制: dec(default) and hex
  1. hexo-renderer-pug
    渲染器
1
npm install hexo-renderer-pug hexo-renderer-stylus --save
  1. hexo-generator-baidu-sitemap
    站点地图插件
1
npm install hexo-generator-baidu-sitemap --save
  1. hexo-generator-search
    本地搜索插件
1
npm install hexo-generator-search --save
  1. hexo-blog-encrypt
    文章加密插件
1
npm install --save hexo-blog-encrypt

post.md 文件

1
2
3
4
5
6
7
8
9
title: {{ title }}
abbrlink:
date: {{ date }}
categories:
tags:
description:
password:
abstract: 有东西被加密了, 请输入密码查看.
message: 您好, 这里需要密码.

8.hexo-wordcount
字数统计
_config.butterfly.yml

1
2
3
4
5
wordcount:
enable: true
post_wordcount: true
min2read: true
total_wordcount: true