hexo 如何给文章设密码

安装插件

命令:

1
npm install hexo-blog-encrypt

修改配置

在本目录配置文件_config.yml加入:

1
2
encrypt:
enable: true

博客文章加密

写新的文章时加入:

1
2
password: xxxxx
message: 输入密码的提示。

高级设置:

1
2
3
4
password: xxxx
abstract: here is something encrypted
message: 请输入密码。
wrong_pass_message: Oh, wrong password, please try again.