参考网址:

(133条消息) hexo博客添加本地搜索功能_玖涯的博客-CSDN博客_hexo 本地搜索

(133条消息) Hexo(sakura)设置文章置顶+私密文章_cungudafa的博客-CSDN博客_hexo隐藏文章

本地搜索

1
2
3
4
5
6
7
8
9
10
11
12
# 未配置淘宝的数据源
npm install hexo-generator-json-content --save
#_config.yml中添加
search:
path: search.xml
field: post
content: true
format: html
# 在_config_butterfly.yml,将local_search,enable改为true
# 本地搜索
local_search:
enable: true

私密文章

1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 下载安装encrypt
npm install hexo-blog-encrypt --save
# _config.yml加入
# 文章加密
encrypt:
enable: true
abstract: 加密文章
message: 输入密码,查看文章
# 使用
---
title: hexo插件
date: 2021-5-12 12:30:12
password: 123456
---