使用插件hexo-blog-encrypt加密文章…

hexo文章加密

安装hexo-blog-encrypt:

1
npm install hexo-blog-encryp

打开站点配置文件_config.yml,添加:

1
2
encrypt:
enable: true

在需要加密的文章头部添加,password,abstract, message字段:

1
2
3
4
5
6
7
8
9
10
11
---
title: 文章加密
comments: false
top: false
date: 2020-05-30 15:59:31
tags:
categories:
password: 12345
abstract:hell world
message: 输入密码,查看文章
---

使用hexo s本地查看设置。