你可以通過右下角的 按鈕切換為簡體顯示


配置文件速讀

你可以快速瞭解到所有配置的註解,讓你配置文件更加方便。
如果遇到不太清楚的配置,可以在這篇文章找到更加詳細的資訊。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
# --------------------------------------
# 導航設置
# --------------------------------------

nav:
# 導航欄 Logo 圖片
logo:
# 是否顯示標題
display_title: true
# 是否固定導航欄
fixed: false

menu:
# 首頁: / || fas fa-home
# 列表||fas fa-list:
# 音樂: /music/ || fas fa-music
# 電影: /movies/ || fas fa-video

# --------------------------------------
# 代碼塊設置
# --------------------------------------

code_blocks:
# 代碼塊主題: darker / pale night / light / ocean / false
theme: light
# 是否使用 Mac 風格
macStyle: false
# 代碼塊高度限制(單位: px)
height_limit: false
# 是否自動換行
word_wrap: false

# 工具欄
# 是否顯示複製按鈕
copy: true
# 是否顯示語言標籤
language: true
# true: 收縮代碼塊 | false: 展開代碼塊 | none: 展開代碼塊並隱藏按鈕
shrink: false
# 是否顯示全屏顯示代碼塊按鈕
fullpage: false

# 社交媒體鏈接
# 格式:
# icon: 鏈接 || 描述 || 顏色
social:

# --------------------------------------
# 圖片設置
# --------------------------------------

# 網站的 favicon 圖標
favicon: /img/favicon.png

# 頭像設置
avatar:
# 頭像圖片鏈接
img: https://i.loli.net/2021/02/24/5O1day2nriDzjSu.png
# 是否啟用頭像效果
effect: false

# 禁用所有橫幅圖片
disable_top_img: false

# 如果頁面未設置橫幅,則顯示默認的橫幅圖片
default_top_img:

# 主頁的橫幅圖片
index_img:

# 歸檔頁的橫幅圖片
archive_img:

# 注意: 是標籤頁(單個標籤),不是標籤頁面(所有標籤)
tag_img:

# 標籤頁的橫幅圖片,可以為每個標籤設置橫幅圖片
# 格式:
# - 標籤名: 圖片鏈接
tag_per_img:

# 注意: 是分類頁(單個分類),不是分類頁面(所有分類)
category_img:

# 分類頁的橫幅圖片,可以為每個分類設置橫幅圖片
# 格式:
# - 分類名: 圖片鏈接
category_per_img:

# 頁腳的背景圖片
footer_img: false

# 網站背景
# 可以設置為顏色或圖片
# 圖片格式: url(http://xxxxxx.com/xxx.jpg)
background:

# 封面設置
cover:
# 是否禁用封面
index_enable: true
aside_enable: true
archives_enable: true
# 主頁封面的位置
# 選擇: left/right/both
position: both
# 當未設置封面時,顯示默認封面
default_cover:
# - https://i.loli.net/2020/05/01/gkihqEjXxJ5UZ1C.jpg

# 替換損壞的圖片
error_img:
# 友鏈頁面的錯誤圖片
flink: /img/friend_404.gif
# 文章頁面的錯誤圖片
post_page: /img/404.jpg

# 簡單的 404 頁面
error_404:
# 是否啟用 404 頁面
enable: false
# 404 頁面的副標題
subtitle: 'Page Not Found'
# 404 頁面的卡片背景圖片
background: https://i.loli.net/2020/05/19/aKOcLiyPl2JQdFD.png

# 文章元數據設置
post_meta:
# 主頁頁面
page:
# 日期類型: created / updated / both
date_type: created
# 日期格式: date / relative
date_format: date
# 是否顯示分類
categories: true
# 是否顯示標籤
tags: false
# 是否顯示文字標籤
label: true
# 文章頁面
post:
# 元數據位置: left / center
position: left
# 日期類型: created / updated / both
date_type: both
# 日期格式: date / relative
date_format: date
# 是否顯示分類
categories: true
# 是否顯示標籤
tags: true
# 是否顯示文字標籤
label: true

# --------------------------------------
# 首頁設置
# --------------------------------------

# 首頁頭圖的設置
# 默認: 頭圖全屏,站點信息在中間
# 站點信息的位置,例如: 300px/300em/300rem/10%
index_site_info_top:
# 頭圖的高度,例如: 300px/300em/300rem
index_top_img_height:

# 首頁的副標題設置
subtitle:
# 是否啟用副標題
enable: false
# 是否啟用打字機效果
effect: true
# 自定義 typed.js
# https://github.com/mattboldt/typed.js/#customization
typed_option:
# 來源 - 調用第三方服務 API(僅限中文)
# 它將首先顯示來源,然後顯示副標題內容
# 選擇: false/1/2/3
# false - 禁用此功能
# 1 - hitokoto.cn
# 2 - yijuzhan.com
# 3 - jinrishici.com
source: false
# 如果關閉打字機效果,副標題將僅顯示 sub 的第一行內容
sub:

# 首頁文章佈局
# 1: 行佈局
# 2: 列布局
index_layout: 1

# 在首頁顯示文章簡介
# 1: 描述
# 2: 兩者(如果存在描述,將顯示描述,否則顯示自動摘要)
# 3: 自動摘要(默認)
# false: 不顯示文章簡介
index_post_content:
method: 3
# 如果設置 method 為 2 或 3,需要配置長度
length: 500

# --------------------------------------
# 文章設置
# --------------------------------------

toc:
# 是否在文章中顯示目錄
post: true
# 是否在頁面中顯示目錄
page: false
# 是否顯示目錄編號
number: true
# 是否默認展開目錄
expand: false
# 是否使用簡潔風格(僅適用於文章)
style_simple: false
# 是否顯示滾動百分比
scroll_percent: true

post_copyright:
# 是否啟用版權聲明
enable: true
# 是否進行文章 URL 解碼
decode: false
# 作者鏈接
author_href:
# 許可證類型
license: CC BY-NC-SA 4.0
# 許可證鏈接
license_url: https://creativecommons.org/licenses/by-nc-sa/4.0/

# 贊助/打賞
reward:
# 是否啟用打賞
enable: false
# 打賞案例文本
text:
QR_code:
# - img: /img/wechat.jpg
# link:
# text: 微信
# - img: /img/alipay.jpg
# link:
# text: 支付寶

# 文章編輯
# 輕鬆在線瀏覽和編輯博客源代碼
post_edit:
# 是否啟用在線編輯
enable: false
# url: https://github.com/用户名/倉庫名/edit/分支名/子目錄名/
# 例如: https://github.com/jerryc127/butterfly.js.org/edit/main/source/
url:

# 相關文章
related_post:
# 是否顯示相關文章
enable: true
# 顯示的文章數量
limit: 6
# 選擇: created / updated
date_type: created

# 選擇: 1 / 2 / false
# 1: “下一篇文章”將鏈接到舊文章
# 2: “下一篇文章”將鏈接到新文章
# false: 禁用分頁
post_pagination: 1

# 顯示文章過期通知
noticeOutdate:
# 是否啟用過期通知
enable: false
# 樣式: simple / flat
style: flat
# 多少天后顯示通知
limit_day: 365
# 位置: top / bottom
position: top
message_prev: 已經過了
message_next: 天自上次更新,文章內容可能已過時。

# --------------------------------------
# 頁腳設置
# --------------------------------------
footer:
owner:
# 是否啟用所有者顯示
enable: true
# 網站創建年份
since: 2019
# 自定義文本
custom_text:
# 主題和框架的版權聲明
copyright: true

# --------------------------------------
# 側邊欄設置
# --------------------------------------

aside:
# 是否啟用側邊欄
enable: true
# 是否默認隱藏側邊欄
hide: false
# 是否在右下角顯示隱藏側邊欄的按鈕
button: true
# 移動設備上是否啟用側邊欄
mobile: true
# 側邊欄位置:left / right
position: right
display:
# 歸檔頁面是否顯示側邊欄
archive: true
# 標籤頁面是否顯示側邊欄
tag: true
# 分類頁面是否顯示側邊欄
category: true
card_author:
# 是否顯示作者信息卡片
enable: true
# 作者描述
description:
button:
# 是否顯示按鈕
enable: true
# 按鈕圖標
icon: fab fa-github
# 按鈕文本
text: Follow Me
# 按鈕鏈接
link: https://github.com/xxxxxx
card_announcement:
# 是否顯示公告卡片
enable: true
# 公告內容
content: This is my Blog
card_recent_post:
# 是否顯示最近文章卡片
enable: true
# 顯示文章數量,0 表示顯示所有
limit: 5
# 排序方式:date / updated
sort: date
sort_order:
card_newest_comments:
# 是否顯示最新評論卡片
enable: false
sort_order:
# 顯示評論數量
limit: 6
# 單位:分鐘,保存數據到 localStorage
storage: 10
# 是否顯示頭像
avatar: true
card_categories:
# 是否顯示分類卡片
enable: true
# 顯示分類數量,0 表示顯示所有
limit: 8
# 選擇:none / true / false
expand: none
sort_order:
card_tags:
# 是否顯示標籤卡片
enable: true
# 顯示標籤數量,0 表示顯示所有
limit: 40
# 是否啟用顏色
color: false
# 標籤排序方式:random/name/length
orderby: random
# 排序順序:1 表示升序,-1 表示降序
order: 1
sort_order:
card_archives:
# 是否顯示歸檔卡片
enable: true
# 歸檔類型:monthly / yearly
type: monthly
# 日期格式,例如:YYYY年MM月
format: MMMM YYYY
# 排序順序:1 表示升序,-1 表示降序
order: -1
# 顯示歸檔數量,0 表示顯示所有
limit: 8
sort_order:
card_post_series:
# 是否顯示系列文章卡片
enable: true
# 標題顯示系列名稱
series_title: false
# 排序方式:title 或 date
orderBy: 'date'
# 排序順序:1 表示升序,-1 表示降序
order: -1
card_webinfo:
# 是否顯示網站信息卡片
enable: true
# 是否顯示文章數量
post_count: true
# 是否顯示最後推送日期
last_push_date: true
sort_order:
# 發佈日期與當前日期的時間差
# 格式:Month/Day/Year Time 或 Year/Month/Day Time
# 如果不啟用此功能,請留空
runtime_date:

# --------------------------------------
# 右下角按鈕設置
# --------------------------------------

# 右下角按鈕與底部的距離(默認單位:px)
rightside_bottom:

# 簡繁轉換設置
translate:
# 是否啟用簡繁轉換
enable: false
# 按鈕文本
default:
# 網站語言(1 - 繁體中文 / 2 - 簡體中文)
defaultEncoding: 2
# 轉換延遲
translateDelay: 0
# 按鈕在簡體中文時的文本
msgToTraditionalChinese: '繁'
# 按鈕在繁體中文時的文本
msgToSimplifiedChinese: '簡'

# 閲讀模式
readmode: true

# 暗黑模式設置
darkmode:
# 是否啟用暗黑模式
enable: true
# 切換暗黑/明亮模式的按鈕
button: true
# 是否自動切換暗黑/明亮模式
# autoChangeMode: 1 跟隨系統設置,如果系統不支持暗黑模式,則在晚上 6 點到早上 6 點之間切換暗黑模式
# autoChangeMode: 2 在晚上 6 點到早上 6 點之間切換暗黑模式
# autoChangeMode: false 不自動切換
autoChangeMode: false
# 設置明亮模式時間,值在 0 到 24 之間。如果未設置,默認值為 6 和 18
start:
end:

# 在返回頂部按鈕中顯示滾動百分比
rightside_scroll_percent: false

# 不要修改以下設置,除非你知道它們的工作原理
# 選擇:readmode,translate,darkmode,hideAside,toc,chat,comment
# 不要重複相同的值
rightside_item_order:
# 是否啟用右側項目順序
enable: false
# 隱藏的默認項目:readmode,translate,darkmode,hideAside
hide:
# 顯示的默認項目:toc,chat,comment
show:

# --------------------------------------
# 全局設置
# --------------------------------------

# 錨點設置
anchor:
# 滾動時,URL 將根據標題 ID 更新
auto_update: false
# 點擊標題滾動並更新錨點
click_to_scroll: false

# 圖片標題
photofigcaption: false

# 複製設置
copy:
# 是否啟用複製功能
enable: true
# 在複製的內容後添加版權信息
copyright:
enable: false
# 當複製字符數超過 limit_count 時添加版權信息
limit_count: 150

# 需要安裝 hexo-wordcount 插件
wordcount:
# 是否啟用字數統計
enable: false
# 在文章元信息中顯示字數統計
post_wordcount: true
# 在文章元信息中顯示閲讀時間
min2read: true
# 在側邊欄網站信息中顯示總字數
total_wordcount: true

# 不蒜子 PV / UV 統計
busuanzi:
# 網站 UV 統計
site_uv: true
# 網站 PV 統計
site_pv: true
# 頁面 PV 統計
page_pv: true

# --------------------------------------
# 數學公式設置
# --------------------------------------

# 關於 per_page
# 如果設置為 true,將在每個頁面加載 mathjax/katex 腳本
# 如果設置為 false,將根據你的設置加載 mathjax/katex 腳本(在頁面的 front-matter 中添加 'mathjax: true' 或者 'katex: true')
math:
# 選擇:mathjax, katex
# 如果不需要數學公式,保持為空
use:
per_page: true
hide_scrollbar: false

mathjax:
# 啟用上下文菜單
enableMenu: true
# 選擇:all / ams / none,這控制是否對公式編號以及如何編號
tags: none

katex:
# 啟用複製 KaTeX 公式
copy_tex: false

# --------------------------------------
# 搜索設置
# --------------------------------------

search:
# 選擇:algolia_search / local_search / docsearch
# 如果不需要搜索功能,保持為空
use:
placeholder:

# Algolia 搜索
algolia_search:
# 每頁搜索結果數量
hitsPerPage: 6

# 本地搜索
local_search:
# 頁面加載時預加載搜索數據
preload: false
# 每篇文章顯示的頂部 n 個搜索結果,設置為 -1 顯示所有結果
top_n_per_article: 1
# 將 HTML 字符串反轉義為可讀內容
unescape: false
CDN:

# Docsearch
# https://docsearch.algolia.com/
docsearch:
appId:
apiKey:
indexName:
option:

# --------------------------------------
# 分享系統
# --------------------------------------

share:
# 選擇:sharejs / addtoany
# 如果不需要分享功能,保持為空
use: sharejs

# Share.js
# https://github.com/overtrue/share.js
sharejs:
sites: facebook,twitter,wechat,weibo,qq

# AddToAny
# https://www.addtoany.com/
addtoany:
item: facebook,twitter,wechat,sina_weibo,facebook_messenger,email,copy_link

# --------------------------------------
# 評論系統
# --------------------------------------

comments:
# 最多兩個評論系統,第一個將作為默認顯示
# 如果不需要評論功能,保持為空
# 選擇:Disqus/Disqusjs/Livere/Gitalk/Valine/Waline/Utterances/Facebook Comments/Twikoo/Giscus/Remark42/Artalk
# 兩個評論系統的格式:Disqus,Waline
use:
# 按鈕旁邊顯示評論系統名稱
text: true
# 懶加載:評論系統將在評論元素進入瀏覽器視口時加載
# 如果設置為 true,評論計數將無效
lazyload: false
# 在文章頂部圖片中顯示評論計數
count: false
# 在主頁顯示評論計數
card_post_count: false

# Disqus 評論插件配置
# 官方文檔:https://disqus.com/
disqus:
# Disqus 的 shortname
shortname:
# 最新評論小部件的 API 密鑰
apikey:

# 使用 Disqus API 渲染評論的替代方案
# 官方文檔:https://github.com/SukkaW/DisqusJS
disqusjs:
# Disqus 的 shortname
shortname:
# API 密鑰
apikey:
# 其他可選配置
option:

# Livere 評論插件配置
# 官方文檔:https://www.livere.com/
livere:
# Livere 的用户 ID
uid:

# Gitalk 評論插件配置
# 官方文檔:https://github.com/gitalk/gitalk
gitalk:
# GitHub 應用的客户端 ID
client_id:
# GitHub 應用的客户端密鑰
client_secret:
# 存儲評論的倉庫名稱
repo:
# 倉庫擁有者的用户名
owner:
# 管理員用户名列表
admin:
# 其他可選配置
option:

# Valine 評論插件配置
# 官方文檔:https://valine.js.org
valine:
# LeanCloud 應用的 appId
appId:
# LeanCloud 應用的 appKey
appKey:
# 評論者頭像樣式
avatar: monsterid
# 該配置適用於國內自定義域名用户,海外版本將自動檢測(無需手動填寫)
serverURLs:
# 評論框背景圖片
bg:
# 使用 Valine 的訪客計數作為頁面的訪客量
visitor: false
# 其他可選配置
option:

# Waline 評論插件配置,一個簡單的評論系統,基於 Valine 開發,支持後端
# 官方文檔:https://waline.js.org/
waline:
# 服務器 URL
serverURL:
# 評論框背景圖片
bg:
# 使用 Waline 的訪客計數作為頁面的訪客量
pageview: false
# 其他可選配置
option:

# Utterances 評論插件配置
# 官方文檔:https://utteranc.es/
utterances:
# 存儲評論的 GitHub 倉庫
repo:
# 問題映射方式,可選值:pathname/url/title/og:title
issue_term: pathname
# 淺色主題,可選值:github-light
light_theme: github-light
# 深色主題,可選值:photon-dark
dark_theme: photon-dark

# Facebook 評論插件配置
# 官方文檔:https://developers.facebook.com/docs/plugins/comments/
facebook_comments:
# 應用 ID
app_id:
# 用户 ID,可選
user_id:
# 每頁顯示評論數
pageSize: 10
# 評論排序方式,可選值:social / time / reverse_time
order_by: social
# 語言設置
lang: zh_TW

# Twikoo 評論插件配置
# 官方文檔:https://github.com/imaegoo/twikoo
twikoo:
# 環境 ID
envId:
# 區域
region:
# 使用 Twikoo 的訪客計數作為頁面的訪客量
visitor: false
# 其他可選配置
option:

# Giscus 評論插件配置
# 官方文檔:https://giscus.app/
giscus:
# 倉庫地址
repo:
# 倉庫 ID
repo_id:
# 分類 ID
category_id:
# 主題配置,light 為淺色主題,dark 為深色主題
theme:
light: light
dark: dark
# 其他可選配置
option:

# Remark42 評論插件配置
# 官方文檔:https://remark42.com/docs/configuration/frontend/
remark42:
# 服務器地址
host:
# 站點 ID
siteId:
# 其他可選配置
option:

# Artalk 評論插件配置
# 官方文檔:https://artalk.js.org/guide/frontend/config.html
artalk:
# 服務器地址
server:
# 站點名
site:
# 使用 Artalk 的訪客計數作為頁面的訪客量
visitor: false
# 其他可選配置
option:

# --------------------------------------
# 聊天服務配置
# --------------------------------------

chat:
# 聊天服務類型,可選值:chatra/tidio/crisp,如果不需要聊天功能則留空
use:
# 推薦使用聊天按鈕,會在網站右下角創建一個按鈕,並隱藏原始按鈕
rightside_button: false
# 原始聊天按鈕在向上滾動時顯示,向下滾動時隱藏
button_hide_show: false

# Chatra 聊天服務配置
# 官方網站:https://chatra.io/
chatra:
# Chatra 服務 ID
id:

# Tidio 聊天服務配置
# 官方網站:https://www.tidio.com/
tidio:
# Tidio 公鑰
public_key:

# Crisp 聊天服務配置
# 官方網站:https://crisp.chat/en/
crisp:
# Crisp 網站 ID
website_id:

# --------------------------------------
# 分析服務配置
# --------------------------------------

# 百度統計配置
# 官方網站:https://tongji.baidu.com/web/welcome/login
baidu_analytics:

# 谷歌分析配置
# 官方網站:https://analytics.google.com/analytics/web/
google_analytics:

# Cloudflare 分析配置
# 官方網站:https://www.cloudflare.com/zh-tw/web-analytics/
cloudflare_analytics:

# Microsoft Clarity 分析配置
# 官方網站:https://clarity.microsoft.com/
microsoft_clarity:

# --------------------------------------
# 廣告配置
# --------------------------------------

# Google Adsense 廣告配置
google_adsense:
# 是否啟用
enable: false
# 是否自動投放廣告
auto_ads: true
# 廣告腳本 URL
js: https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js
# 客户 ID
client:
# 是否啟用頁面級廣告
enable_page_level_ads: true

# 手動插入廣告配置,如果不需要廣告則留空
ad:
# 在首頁每三個帖子後插入廣告
index:
# 在側邊欄插入廣告
aside:
# 在文章分頁前插入廣告
post:

# --------------------------------------
# 站點驗證配置
# --------------------------------------

site_verification:
# 示例:
# - name: google-site-verification
# content: xxxxxx
# - name: baidu-site-verification
# content: xxxxxxx

# --------------------------------------
# 美化 / 效果
# --------------------------------------

# 主題顏色自定義
# 注意:顏色值必須用雙引號,如 "#000",否則可能會導致錯誤!

# 主題顏色配置
# theme_color:
# 是否啟用主題顏色
# enable: true
# 主顏色
# main: "#49B1F5"
# 分頁器顏色
# paginator: "#00c4b6"
# 按鈕懸停顏色
# button_hover: "#FF7242"
# 文本選擇顏色
# text_selection: "#00c4b6"
# 鏈接顏色
# link_color: "#99a9bf"
# 元數據顏色
# meta_color: "#858585"
# 水平線顏色
# hr_color: "#A4D8FA"
# 代碼前景色
# code_foreground: "#F47466"
# 代碼背景色
# code_background: "rgba(27, 31, 35, .05)"
# 目錄顏色
# toc_color: "#00c4b6"
# 引用塊填充顏色
# blockquote_padding_color: "#49b1f5"
# 引用塊背景顏色
# blockquote_background_color: "#49b1f5"
# 滾動條顏色
# scrollbar_color: "#49b1f5"
# 淺色模式下的主題顏色
# meta_theme_color_light: "ffffff"
# 深色模式下的主題顏色
# meta_theme_color_dark: "#0d0d0d"

# 分類和標籤頁面的用户界面設置
# 選擇:index - 與主頁 UI 相同 / default - 與歸檔 UI 相同
# 留空或設置為 index
category_ui:
tag_ui:

# 拉伸行使每行寬度相等
text_align_justify: false

# 為頁眉和頁腳添加遮罩
mask:
header: true
footer: true

# 加載動畫
preloader:
# 是否啟用加載動畫
enable: false
# 資源
# 1. 全屏加載
# 2. 進度條
source: 1
# pace 主題 (參見 https://codebyzach.github.io/pace/)
pace_css_url:

# 頁面過渡效果
enter_transitions: true

# 默認顯示模式 - light (默認) / dark
display_mode: light

# 美化文章內容的配置
beautify:
# 是否啟用美化
enable: false
# 指定美化的範圍 (site 或 post)
field: post
# 指定標題前綴圖標,如 '\f0c1'
title-prefix-icon:
# 指定標題前綴圖標的顏色,如 '#F47466'
title-prefix-icon-color:

# 全局字體設置
# 除非您知道它們的工作原理,否則不要修改以下設置
font:
global-font-size:
code-font-size:
font-family:
code-font-family:

# 網站標題和副標題的字體設置
blog_title_font:
font_link:
font-family:

# 分隔符圖標的設置
hr_icon:
# 是否啟用分隔符圖標
enable: true
# Font Awesome 圖標的 unicode 值,如 '\3423'
icon:
icon-top:

# 打字機效果
# https://github.com/disjukr/activate-power-mode
activate_power_mode:
# 是否啟用打字機效果
enable: false
# 是否啟用彩色效果
colorful: true
# 是否啟用震動效果
shake: true
# 是否在移動設備上啟用
mobile: false

# 背景效果
# --------------------------------------

# canvas_ribbon
# 參見: https://github.com/hustcc/ribbon.js
canvas_ribbon:
# 是否啟用 canvas_ribbon
enable: false
# ribbon 的大小
size: 150
# ribbon 的不透明度 (0 ~ 1)
alpha: 0.6
zIndex: -1
# 是否點擊更改顏色
click_to_change: false
# 是否在移動設備上啟用
mobile: false

# Fluttering Ribbon
canvas_fluttering_ribbon:
# 是否啟用 Fluttering Ribbon
enable: false
# 是否在移動設備上啟用
mobile: false

# canvas_nest
# https://github.com/hustcc/canvas-nest.js
canvas_nest:
# 是否啟用 canvas_nest
enable: false
# 線條顏色,默認: '0,0,0'; RGB 值: (R,G,B).(注意: 使用 ',' 分隔.)
color: '0,0,255'
# 線條的不透明度 (0~1)
opacity: 0.7
# 背景的 z-index 屬性
zIndex: -1
# 線條數量
count: 99
# 是否在移動設備上啟用
mobile: false

# 鼠標點擊效果: 煙花
fireworks:
# 是否啟用煙花效果
enable: false
zIndex: 9999
# 是否在移動設備上啟用
mobile: false

# 鼠標點擊效果: 心形符號
click_heart:
# 是否啟用心形符號效果
enable: false
# 是否在移動設備上啟用
mobile: false

# 鼠標點擊效果: 文字
clickShowText:
# 是否啟用文字效果
enable: false
text:
# - I
# - LOVE
# - YOU
fontSize: 15px
# 是否隨機顯示文字
random: false
# 是否在移動設備上啟用
mobile: false

# --------------------------------------
# 燈箱設置
# --------------------------------------

# 選擇: fancybox / medium_zoom
# https://github.com/francoischalifour/medium-zoom
# https://fancyapps.com/fancybox/
# 如果不需要燈箱效果,請留空
lightbox:

# --------------------------------------
# 標籤外掛設置
# --------------------------------------

# 系列
series:
# 是否啟用系列
enable: false
# 按標題或日期排序
orderBy: 'title'
# 排序方式。1, asc 為升序; -1, desc 為降序
order: 1
# 是否顯示編號
number: true

# ABCJS - ABC 音樂符號插件
# https://github.com/paulrosen/abcjs
abcjs:
# 是否啟用 ABCJS
enable: false
# 是否每頁啟用
per_page: true

# Mermaid
# https://github.com/mermaid-js/mermaid
mermaid:
# 是否啟用 Mermaid
enable: false
# 使用代碼塊編寫 Mermaid 圖表
code_write: false
# 內置主題: default / forest / dark / neutral
theme:
light: default
dark: dark

# chartjs
# 參見 https://www.chartjs.org/docs/latest/
chartjs:
enable: false
# 除非你了解它們的工作原理,否則不要修改。
# 默認設置僅在未指定 MD 語法時使用。
# 圖表的字體顏色
fontColor:
light: "rgba(0, 0, 0, 0.8)"
dark: "rgba(255, 255, 255, 0.8)"
# 圖表的邊框顏色
borderColor:
light: "rgba(0, 0, 0, 0.1)"
dark: "rgba(255, 255, 255, 0.2)"
# 雷達圖和極區圖的刻度標籤背景顏色
scale_ticks_backdropColor:
light: "transparent"
dark: "transparent"

# Note - Bootstrap 提示框
note:
# Note 標籤樣式值:
# - simple bs-callout 舊警告樣式。默認。
# - modern bs-callout 新 (v2-v3) 警告樣式。
# - flat 扁平提示框樣式,帶背景,如 Mozilla 或 StackOverflow。
# - disabled 禁用所有 Note 標籤的 CSS 樣式。
style: flat
# 是否顯示圖標
icons: true
# 邊框半徑
border_radius: 3
# 背景顏色偏移百分比 (modern: -12 | 12; flat: -18 | 6)。
# 也應用於標籤變量。此選項可與禁用的 Note 標籤一起使用。
light_bg_offset: 0

# --------------------------------------
# 其他設置
# --------------------------------------

# https://github.com/MoOx/pjax
pjax:
# 是否啟用 pjax
enable: false
# 排除指定頁面不使用 pjax,如 '/music/'
exclude:
# - /xxxxxx/

# 注入 CSS 和腳本 (aplayer/meting)
aplayerInject:
# 是否啟用注入
enable: false
# 是否每頁啟用
per_page: true

# Snackbar - Toast 通知
# https://github.com/polonel/SnackBar
# 位置: top-left / top-center / top-right / bottom-left / bottom-center / bottom-right
snackbar:
# 是否啟用 Snackbar
enable: false
# 通知位置
position: bottom-left
# 淺色模式和深色模式下的通知背景顏色
bg_light: '#49b1f5'
bg_dark: '#1f1f1f'

# Instant.page
# https://instant.page/
instantpage: false

# Pangu - 在中文字符和英文字符之間插入空格
# https://github.com/vinta/pangu.js
pangu:
# 是否啟用 Pangu
enable: false
# 指定使用 Pangu 的範圍(site 或 post)
field: site

# Lazyload
# https://github.com/verlok/vanilla-lazyload
lazyload:
# 是否啟用 Lazyload
enable: false
# 指定使用 Lazyload 的範圍 (site 或 post)
field: site
placeholder:
blur: false

# PWA
# 參見 https://github.com/JLHwung/hexo-offline
# ---------------
pwa:
# 是否啟用 PWA
enable: false
# PWA manifest 文件路徑
manifest:
# Apple Touch 圖標路徑
apple_touch_icon:
# 32x32 像素的 favicon 圖標路徑
favicon_32_32:
# 16x16 像素的 favicon 圖標路徑
favicon_16_16:
# mask 圖標路徑
mask_icon:

# Open graph meta tags
# 參見 https://hexo.io/docs/helpers#open-graph
Open_Graph_meta:
# 是否啟用 Open Graph meta 標籤
enable: true
option:
# twitter_card:
# twitter_image:
# twitter_id:
# twitter_site:
# google_plus:
# fb_admins:
# fb_app_id:

# 添加供應商前綴以確保兼容性
# 是否啟用 CSS 前綴
css_prefix: true

# Inject
# 插入代碼到 head(在 '</head>' 標籤之前)和底部(在 '</body>' 標籤之前)
inject:
head:
# - <link rel="stylesheet" href="/xxx.css">
bottom:
# - <script src="xxxx"></script>

# CDN 設置
# 除非你知道它們的工作原理,否則不要修改以下設置
CDN:
# 內部和第三方腳本的 CDN 提供商
# 兩者的選項:local/jsdelivr/unpkg/cdnjs/custom
# 注意: Dev 版本只能使用 'local' 作為內部腳本
# 注意:將第三方腳本設置為 'local' 時,需要安裝 hexo-butterfly-extjs
internal_provider: local
third_party_provider: jsdelivr

# 是否在 URL 中添加版本號,true 或 false
version: false

# 自定義格式
# 例如:https://cdn.staticfile.org/${cdnjs_name}/${version}/${min_cdnjs_file}
custom_format:

option:

語言

修改 Hexo 的配置文件 _config.yml

默認語言是 en

主題支持

  • default(en)
  • zh-CN (簡體中文)
  • zh-TW (台灣繁體中文)
  • zh-HK (香港繁體中文)
  • ja (日語)
  • ko (韓語)

網站資料

修改網站各種資料,例如標題、副標題和郵箱等個人資料,請修改 Hexo 的_config.yml

butterfly-docs-hexo-config.png

導航

參數設置

1
2
3
4
5
6
nav:
# Navigation bar logo image
logo: /xxxx.png
display_title: true
# Whether to fix navigation bar
fixed: false
參數解釋
logo網站的 logo,支持圖片,直接填入圖片鏈接
display_title是否顯示網站標題,填寫 true 或者 false
fixed是否固定狀態欄,填寫 true 或者 false

目錄

1
2
3
4
5
6
7
8
9
Home: / || fas fa-home
Archives: /archives/ || fas fa-archive
Tags: /tags/ || fas fa-tags
Categories: /categories/ || fas fa-folder-open
List||fas fa-list:
Music: /music/ || fas fa-music
Movie: /movies/ || fas fa-video
Link: /link/ || fas fa-link
About: /about/ || fas fa-heart

必須是 /xxx/,後面||分開,然後寫圖標名。

如果不希望顯示圖標,圖標名可不寫。

默認子目錄是展開的,如果你想要隱藏,在子目錄裏添加 hide

1
2
3
List||fas fa-list||hide:
Music: /music/ || fas fa-music
Movie: /movies/ || fas fa-video

注意: 導航的文字可自行更改

例如:

1
2
3
4
5
6
7
8
9
10
11
menu:
首頁: / || fas fa-home
時間軸: /archives/ || fas fa-archive
標籤: /tags/ || fas fa-tags
分類: /categories/ || fas fa-folder-open
清單||fa fa-heartbeat:
音樂: /music/ || fas fa-music
照片: /Gallery/ || fas fa-images
電影: /movies/ || fas fa-video
友鏈: /link/ || fas fa-link
關於: /about/ || fas fa-heart

hexo-theme-butterfly-doc-menu.png

代碼塊

代碼塊中的所有功能只適用於 Hexo 自帶的代碼渲染

如果使用第三方的渲染器,不一定會有效

1
2
3
4
5
6
7
8
9
10
11
12
13
14
code_blocks:
# Code block theme: darker / pale night / light / ocean / false
theme: light
macStyle: false
# Code block height limit (unit: px)
height_limit: false
word_wrap: false

# Toolbar
copy: true
language: true
# true: shrink the code blocks | false: expand the code blocks | none: expand code blocks and hide the button
shrink: false
fullpage: false
參數解釋
theme代碼高亮主題,可選 darker / pale night / light / ocean / false
macStyle是否使用 Mac 風格
height_limit代碼塊高度限制(單位: px), 可填寫 數字 或者 false
word_wrap是否自動換行
copy是否顯示複製按鈕
language是否顯示語言標籤
shrinktrue: 收縮代碼塊 / false: 展開代碼塊 / none: 展開代碼塊並隱藏按鈕
fullpage是否全屏顯示代碼塊

代碼高亮主題

Butterfly 支持 6 種代碼高亮樣式:

  • darker
  • pale night
  • light
  • ocean

如果你需要 MacOS 風格的代碼高亮樣式,可以把macStyle 設為 true

darker

pale night

light

ocean

macStyle

主題從 3.0 開始,支持使用自定義的代碼顔色。

如何自定義主題,請查看下面這篇文章。

自定義代碼配色

代碼框展開/關閉

在默認情況下,代碼框自動展開,可設置是否所有代碼框都關閉狀態,點擊>可展開代碼

  • true 全部代碼框不展開,需點擊>打開
  • false 代碼框展開,有>點擊按鈕
  • none 不顯示>按鈕
1
highlight_shrink: true #代碼框不展開,需點擊 '>' 打開

你也可以在 post/page 頁對應的 markdown 文件 front-matter 添加 highlight_shrink 來獨立配置。

主題配置文件中highlight_shrink 設為 true 時,可在 front-matter 添加highlight_shrink: false來單獨配置文章展開代碼框。

主題配置文件中highlight_shrink 設為 false 時,可在 front-matter 添加highlight_shrink: true來單獨配置文章收縮代碼框。

highlight_shrink: true

hexo-theme-butterfly-doc-highlight-shrink-true.png

highlight_shrink: false

hexo-theme-butterfly-doc-highlight-shrink-false.png

highlight_shrink: none

hexo-theme-butterfly-docs-highlight-shirk-none.png

代碼換行

在默認情況下,Hexo 在編譯的時候不會實現代碼自動換行。如果你不希望在代碼塊的區域裏有橫向滾動條的話,那麼你可以考慮開啟這個功能。

1
code_word_wrap: true

如果你是使用 highlight 渲染,需要找到你站點的 Hexo 配置文件_config.yml,將line_number改成false:

1
2
3
4
5
highlight:
enable: true
line_number: false # <- 改這裏
auto_detect: false
tab_replace:

如果你是使用 prismjs 渲染,需要找到你站點的 Hexo 配置文件_config.yml,將line_number改成false:

1
2
3
4
5
prismjs:
enable: false
preprocess: true
line_number: false # <- 改這裏
tab_replace: ''

設置code_word_wrap之前

hexo-theme-butterfly-doc-code-word-wrap-before.png

設置code_word_wrap之後

hexo-theme-butterfly-doc-code-word-wrap-after.png

代碼高度限制

3.7.0 及以上支持

可配置代碼高度限制,超出的部分會隱藏,並顯示展開按鈕。

1
highlight_height_limit: false # unit: px

注意:

  1. 單位是 px,直接添加數字,如 200

  2. 實際限制高度為 highlight_height_limit + 30 px ,多增加 30px 限制,目的是避免代碼高度只超出 highlight_height_limit 一點時,出現展開按鈕,展開沒內容。

  3. 不適用於隱藏後的代碼塊( css 設置 display: none)

社交圖標

Butterfly 支持 font-awesome v6 圖標.

書寫格式 圖標名:url || 描述性文字 || color

1
2
3
social:
fab fa-github: https://github.com/xxxxx || Github || "#hdhfbb"
fas fa-envelope: mailto:xxxxxx@gmail.com || Email || "#000000"

圖標名可在這尋找

hexo-theme-butterfly-doc-fontawesome.png

PC:

!hexo-theme-butterfly-doc-fontawesome.png

Mobile:

hexo-theme-butterfly-doc-socila-icon-mobile.png

圖片設置

頭像

1
2
3
avatar:
img: /img/avatar.png
effect: true # 頭像會一直轉圈

hexo-theme-butterfly-doc-avatar.png

頂部圖

如果不要顯示頂部圖,可直接配置 disable_top_img: true

頂部圖的獲取順序,如果都沒有配置,則不顯示頂部圖。

  1. 頁面頂部圖的獲取順序:

    各自配置的 top_img > 配置文件的 default_top_img

  2. 文章頁頂部圖的獲取順序:

    各自配置的 top_img > cover > 配置文件的 default_top_img

配置中的值:

配置解釋
index_img主頁的 top_img
default_top_img默認的 top_img,當頁面的 top_img 沒有配置時,會顯示 default_top_img
archive_img歸檔頁面的 top_img
tag_imgtag 子頁面 的 默認 top_img
tag_per_imgtag 子頁面的 top_img,可配置每個 tag 的 top_img
category_imgcategory 子頁面 的 默認 top_img
category_per_imgcategory 子頁面的 top_img,可配置每個 category 的 top_img

其它頁面 (tags/categories/自建頁面)和 文章頁 的 top_img ,請到對應的 md 頁面設置front-matter中的top_img

以上所有的 top_img 可配置以下值

配置的值效果
留空顯示默認的 top_img(如有),否則顯示默認的顔色
(文章頁 top_img 留空的話,會顯示 cover 的值)
img 鏈接圖片的鏈接,顯示所配置的圖片
顔色(
HEX 值 - #0000FF
RGB 值 - rgb(0,0,255)
顔色單詞 - orange
漸變色 - linear-gradient( 135deg, #E2B0FF 10%, #9F44D3 100%)
對應的顔色
transparent透明
false不顯示 top_img

tag_per_imgcategory_per_img 是 3.2.0 新增的內容,可對 tag 和 category 進行單獨的配置

並不推薦為每個 tag 和每個 category 都配置不同的頂部圖,因為配置太多會拖慢生成速度

1
2
3
4
5
6
7
tag_per_img:
aplayer: https://xxxxxx.png
android: ddddddd.png

category_per_img:
隨想: hdhdh.png
推薦: ddjdjdjd.png

top_img: false

theme-butterfly-docs-page-top-img-false.png

theme-butterfly-docs-post-top-img-false-new.png

top_img: orange

theme-butterfly-docs-top-img-orange.png

top_img: 'linear-gradient(20deg, #0062be, #925696, #cc426e, #fb0347)'

theme-butterfly-docs-top-img-color.png

頁腳背景圖

1
2
# footer是否顯示圖片背景(與top_img一致)
footer_img: true
配置的值效果
留空/false顯示默認的顔色
img 鏈接圖片的鏈接,顯示所配置的圖片
顔色(
HEX 值 - #0000FF
RGB 值 - rgb(0,0,255)
顔色單詞 - orange
漸變色 - linear-gradient( 135deg, #E2B0FF 10%, #9F44D3 100%)
對應的顔色
transparent透明
true顯示跟 top_img 一樣

true

網站背景

默認顯示白色,可設置圖片或者顏色

1
2
3
4
# 圖片格式 url(http://xxxxxx.com/xxx.jpg)
# 顏色(HEX值/RGB值/顔色單詞/漸變色)
# 留空 不顯示背景
background:

留意: 如果你的網站根目錄不是'/',使用本地圖片時,需加上你的根目錄。
例如:網站是 https://yoursite.com/blog,引用一張img/xx.png圖片,則設置 background 為 `url(/blog/img/xx.png)

background:'#49B202'

hexo-theme-butterfly-doc-set-body-background-color.png

hexo-theme-butterfly-doc-set-body-background-img.png

文章封面

文章的 markdown 文檔上,在 Front-matter 添加 cover ,並填上要顯示的圖片地址。

如果不配置 cover,可以設置顯示默認的 cover。

如果不想在首頁顯示 cover, 可以設置為 false

文章封面的獲取順序 Front-matter 的 cover > 配置文件的 default_cover > false

1
2
3
4
5
6
cover:
# 是否顯示文章封面
index_enable: true
aside_enable: true
archives_enable: true
default_cover:
參數解釋
index_enable主頁是否顯示文章封面圖
aside_enable側欄是否顯示文章封面圖
archives_enable歸檔頁面是否顯示文章封面圖
default_cover默認的 cover, 可配置圖片鏈接/顔色/漸變色等

當配置多張圖片時,會隨機選擇一張作為 cover.此時寫法應為

1
2
3
4
default_cover:
- https://jsd.012700.xyz/gh/jerryc127/CDN@latest/cover/default_bg.png
- https://jsd.012700.xyz/gh/jerryc127/CDN@latest/cover/default_bg2.png
- https://jsd.012700.xyz/gh/jerryc127/CDN@latest/cover/default_bg3.png

hexo-theme-butterfly-doc-post-cover.png

hexo-theme-butterfly-doc-post-cover-show.png

hexo-theme-butterfly-docs-cover-false.png

頁面 meta 顯示

這個選項是用來顯示文章的相關信息的。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
post_meta:
# Home Page
page:
# Choose: created / updated / both
date_type: created
# Choose: date / relative
date_format: date
categories: true
tags: false
label: true
post:
# Choose: left / center
position: left
# Choose: created / updated / both
date_type: both
# Choose: date / relative
date_format: date
categories: true
tags: true
label: true

主頁:

參數解釋
date_type顯示文章的時間,可選 created / updated / both
date_format配置時間顯示明確時間還是相對時間,可選 date / relative
categories是否顯示文章的分類
tags是否顯示文章的標籤
label是否顯示文字標簽

文章頁:

參數解釋
position文章頁 meta 顯示的位置,可選 left / center
date_type顯示文章的時間,可選 created / updated / both
date_format配置時間顯示明確時間還是相對時間,可選 date / relative
categories是否顯示文章的分類
tags是否顯示文章的標籤
label是否顯示文字標簽

主頁

hexo-theme-butterfly-docs-page-meta.png

文章頁

hexo-theme-butterfly-doc-post-info.png

hexo-theme-butterfly-doc-post-tag.png

date_format 是 3.2.0 新增的內容,配置時間顯示明確時間還是相對時間

相對時間

theme-butterfly-docs-relative-time.png

明確時間

theme-butterfly-docs-full-date.png

首頁

首頁頂部圖大小

默認的顯示為全屏,網站信息會居中顯示

1
2
3
4
5
# 主頁設置
# 默認top_img全屏,site_info在中間
# 使用默認, 都無需填寫(建議默認)
index_site_info_top: # 主頁標題距離頂部距離 例如 300px/300em/300rem/10%
index_top_img_height: #主頁top_img高度 例如 300px/300em/300rem 不能使用百分比

注意:index_top_img_height的值不能使用百分比。
2 個都不填的話,會使用默認值

舉例,當

1
index_top_img_height: 400px

效果

hexo-theme-butterfly-doc-index-top-img-setting.png

網站副標題

可設置主頁中顯示的網站副標題或者喜歡的座右銘。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 主頁subtitle
subtitle:
enable: false
# Typewriter Effect (打字效果)
effect: true
# Customize typed.js
# https://github.com/mattboldt/typed.js/#customization
typed_option:
# source 調用第三方服務
# false 關閉調用
# 1 調用一言網的一句話(簡體) https://hitokoto.cn/
# 2 調用一句網(簡體) http://yijuzhan.com/
# 3 調用今日詩詞(簡體) https://www.jinrishici.com/
# subtitle 會先顯示 source , 再顯示 sub 的內容
source: false
# 如果關閉打字效果,subtitle 只會顯示 sub 的第一行文字
sub:
- 今日事&#44;今日畢
- Never put off till tomorrow what you can do today

hexo-theme-butterfly-doc-index-subtitle.gif

首頁卡片佈局

主題文章卡片支持 7 種佈局

1
index_layout: 3

配置解釋:

配置值解釋
1封面在左,信息在右
2封面在右,信息在左
3封面和信息左右交替顯示
4封面在上,信息在下
5信息顯示在封面上
6瀑布流布局 - 封面在上,信息在下
7瀑布流布局 - 信息顯示在封面上

填寫數字序號即可,默認為 3

1: 封面在左,信息在右

2: 封面在右,信息在左

3: 封面和信息左右交替显示

4: 封面在上,信息在下

5: 信息显示在封面上

6: 瀑布流布局 - 封面在上,信息在下

7: 瀑布流布局 - 信息显示在封面上

主頁文章節選

因為主題 UI 的關係,主頁文章節選只支持自動節選文章頁description

1
2
3
4
5
6
7
8
9
# Display the article introduction on homepage
# 1: description
# 2: both (if the description exists, it will show description, or show the auto_excerpt)
# 3: auto_excerpt (default)
# false: do not show the article introduction
index_post_content:
method: 3
# If you set method to 2 or 3, the length need to config
length: 500
參數解釋
method顯示文章內容的方式,有四種可供選擇
1 - 只顯示 description
2 - 優先選擇 description,如果沒有配置 description,則顯示自動節選的內容
3 - 只顯示自動節選
4 - 不顯示文章內容
length自動節選的長度,只有在 method 為 2 或者 3 的時候才需要配置 length

description在 front-matter 裏添加

hexo-theme-butterfly-doc-post-description.png

文章頁

TOC 目錄

在側邊欄顯示 TOC(文章目錄)

1
2
3
4
5
6
7
8
toc:
post: true
page: false
number: true
expand: false
# Only for post
style_simple: false
scroll_percent: true
屬性解釋
post文章頁是否顯示 TOC
page普通頁面是否顯示 TOC
number是否顯示章節數
expand是否展開 TOC
style_simple簡潔模式(側邊欄顯示 TOC, 只對文章頁有效 )
scroll_percent是否顯示滾動進度百分比

Toc PC

Toc Mobile

style_simple: true

為特定的文章配置

在你的文章md文件的頭部,加入toc_numbertoc,並配置true或者false即可。

主題會優先判斷文章 Markdown 的 Front-matter 是否有配置,如有,則以 Front-matter 的配置為準。否則,以主題配置文件中的配置為準。

文章版權

為你的博客文章展示文章版權和許可協議。

1
2
3
4
5
6
7
8
9
10
11
post_copyright:
# 是否啟用版權聲明
enable: true
# 是否進行文章 URL 解碼
decode: false
# 作者鏈接
author_href:
# 許可證類型
license: CC BY-NC-SA 4.0
# 許可證鏈接
license_url: https://creativecommons.org/licenses/by-nc-sa/4.0/

由於Hexo 4.1開始,默認對網址進行解碼,以至於如果是中文網址,會被解碼,可設置decode: true來顯示中文網址。

如果有文章(例如:轉載文章)不需要顯示版權,可以在文章 Front-matter 單獨設置

1
copyright: false

3.0.0開始,支持對單獨文章設置版權信息,可以在文章 Front-matter 單獨設置

1
2
3
4
copyright_author: xxxx
copyright_author_href: https://xxxxxx.com
copyright_url: https://xxxxxx.com
copyright_info: 此文章版權歸 xxxxx 所有,如有轉載,請註明來自原作者

版權顯示截圖

文章打賞/贊助

在你每篇文章的結尾,可以添加贊助按鈕。相關二維碼可以自行配置。

對於沒有提供二維碼的,可配置一張軟件的 icon 圖片,然後在 link 上添加相應的贊助鏈接。用户點擊圖片就會跳轉到鏈接去。

link 可以不寫,會默認為圖片的鏈接。

1
2
3
4
5
6
7
8
9
10
reward:
enable: true
text:
QR_code:
- img: /img/wechat.jpg
link:
text: 微信
- img: /img/alipay.jpg
link:
text: 支付寶

文章編輯按鈕

在文章標題旁邊顯示一個編輯按鈕,點擊會跳轉到對應的鏈接去。

1
2
3
4
5
6
7
# Post edit
# Easily browse and edit blog source code online.
post_edit:
enable: false
# url: https://github.com/user-name/repo-name/edit/branch-name/subdirectory-name/
# For example: https://github.com/jerryc127/butterfly.js.org/edit/main/source/
url:

hexo-theme-butterfly-docs-post-edit.png

hexo-theme-butterfly-docs-post-edit-2.png

相關文章

當文章封面設置為 false 時,或者沒有獲取到封面配置,相關文章背景將會顯示主題色。

相關文章推薦的原理是根據文章 tags 的比重來推薦

1
2
3
4
related_post:
enable: true
limit: 6 # 顯示推薦文章數目
date_type: created # or created or updated 文章日期顯示創建日或者更新日

文章分頁按鈕

當文章封面設置為 false 時,或者沒有獲取到封面配置,分頁背景將會顯示主題色。

可設置分頁的邏輯,也可以關閉分頁顯示

1
2
3
4
5
6
# post_pagination (分頁)
# value: 1 || 2 || false
# 1: The 'next post' will link to old post
# 2: The 'next post' will link to new post
# false: disable pagination
post_pagination: false
參數解釋
post_pagination: false關閉分頁按鈕
post_pagination: 1下一篇顯示的是舊文章
post_pagination: 2下一篇顯示的是新文章

文章過期提醒

如果你想单独关闭某些文章的过期提醒,你可以在对应文章页的 front-matter 中配置 noticeOutdate: false 来关闭。

可設置是否顯示文章過期提醒,以更新時間為基準。

1
2
3
4
5
6
7
8
9
10
11
# Displays outdated notice for a post
noticeOutdate:
enable: false
# Style: simple / flat
style: flat
# When will it be shown
limit_day: 365
# Position: top / bottom
position: top
message_prev: It has been
message_next: days since the last update, the content of the article may be outdated.
配置解釋
enable是否開啟文章過期提醒
style提醒樣式, simple / flat
limit_day設置多少天後提醒,默認 365 天
position提醒位置 top / bottom
message_prev提示文字
message_next提示文字

style: flat

hexo-theme-butteffly-docs-outdate-flat.png

style: simple

hexo-theme-butterfly-docs-outdated-simple.png

頁腳

博客年份

since是一個來展示你站點起始時間的選項。它位於頁面的最底部。

1
2
3
4
footer:
owner:
enable: true
since: 2018

hexo-theme-butterfly-doc-since.png

頁腳自定義文本

custom_text是一個給你用來在頁腳自定義文本的選項。通常你可以在這裏寫聲明文本等,支持 HTML。

1
custom_text: Hi, welcome to my <a href="https://butterfly.js.org/">blog</a>!

hexo-theme-butterfly-doc-footer-text.png

對於部分人需要寫 ICP 的,也可以寫在 custom_text

1
custom_text: <a href="icp鏈接"><img class="icp-icon" src="icp圖片"><span>備案號:xxxxxx</span></a>

Aside

配置

側邊欄的配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
aside:
enable: true
hide: false
# Show the button to hide the aside in bottom right button
button: true
mobile: true
# Position: left / right
position: right
display:
archive: true
tag: true
category: true
card_author:
enable: true
description:
button:
enable: true
icon: fab fa-github
text: Follow Me
link: https://github.com/xxxxxx
card_announcement:
enable: true
content: This is my Blog
card_recent_post:
enable: true
# If set 0 will show all
limit: 5
# Sort: date / updated
sort: date
sort_order:
card_newest_comments:
enable: false
sort_order:
limit: 6
# Unit: mins, save data to localStorage
storage: 10
avatar: true
card_categories:
enable: true
# If set 0 will show all
limit: 8
# Choose: none / true / false
expand: none
sort_order:
card_tags:
enable: true
# If set 0 will show all
limit: 40
color: false
# Order of tags, random/name/length
orderby: random
# Sort of order. 1, asc for ascending; -1, desc for descending
order: 1
sort_order:
card_archives:
enable: true
# Type: monthly / yearly
type: monthly
# Eg: YYYY年MM月
format: MMMM YYYY
# Sort of order. 1, asc for ascending; -1, desc for descending
order: -1
# If set 0 will show all
limit: 8
sort_order:
card_post_series:
enable: true
# The title shows the series name
series_title: false
# Order by title or date
orderBy: 'date'
# Sort of order. 1, asc for ascending; -1, desc for descending
order: -1
card_webinfo:
enable: true
post_count: true
last_push_date: true
sort_order:
# Time difference between publish date and now
# Formal: Month/Day/Year Time or Year/Month/Day Time
# Leave it empty if you don't enable this feature
runtime_date:

sort_order 是給每個卡片配置的排序,如果不配置,則按照主題配置文件的排序。數字越小,越靠前。

配置解釋
enable是否啟用側邊欄
hide是否默認隱藏側邊欄
button是否顯示隱藏側邊欄的按鈕
mobile是否在移動端顯示側邊欄
position側邊欄位置,left / right
display.archivearchive 頁面是否顯示 aside
display.tagtag 頁面是否顯示 aside
display.categorycategory 頁面是否顯示 aside
card_author.enable是否顯示作者卡片
card_author.description作者描述信息
card_author.button.enable是否顯示按鈕
card_author.button.icon按鈕圖標,可在這裏找到圖標名稱:https://fontawesome.com/icons?d=gallery&m=free
card_author.button.text按鈕文字
card_author.button.link按鈕鏈接
card_announcement.enable是否顯示公告卡片
card_announcement.content公告內容 (可使用 html 標簽)
card_recent_post.enable是否顯示最新文章卡片
card_recent_post.limit顯示文章數目,0 為全部
card_recent_post.sort排序方式,date / updated
card_newest_comments.enable是否顯示最新評論卡片
card_newest_comments.limit顯示評論數目,0 為全部
card_newest_comments.storage保存時間,單位分鐘,保存到本地存儲,避免每次刷新都重新請求數據
card_newest_comments.avatar是否顯示頭像
card_categories.enable是否顯示分類卡片
card_categories.limit顯示分類數目,0 為全部
card_categories.expand是否展開分類,none / true / false
card_tags.enable是否顯示標籤卡片
card_tags.limit顯示標籤數目,0 為全部
card_tags.color是否顯示標籤顔色
card_tags.orderby標籤排序方式,random / name / length
card_tags.order排序方式,1 為升序,-1 為降序
card_archives.enable是否顯示歸檔卡片
card_archives.type歸檔類型,monthly / yearly
card_archives.format歸檔顯示格式,例如:YYYY 年 MM 月
card_archives.order排序方式,1 為升序,-1 為降序
card_archives.limit顯示歸檔數目,0 為全部
card_post_series.enable是否顯示文章系列卡片
card_post_series.series_title是否顯示系列名稱
card_post_series.orderBy排序方式,title / date
card_post_series.order排序方式,1 為升序,-1 為降序
card_webinfo.enable是否顯示網站信息卡片
card_webinfo.post_count是否顯示文章數量
card_webinfo.last_push_date是否顯示最後更新日期
card_webinfo.runtime_date顯示網站運行時間,不需要開啟,留空白就行(開啟格式一定要是 Month/Day/Year Time 或者 Year/Month/Day Time

目前有三個評論 Livere、Facebook Comments 和 Giscus 不支持最新評論。

最新評論只會在刷新時才會去讀取,並不會實時變化

由於 API 有 訪問次數限制,為了避免調用太多,主題默認存取期限為 10 分鐘。也就是説,調用後資料會存在 localStorage 裏,10 分鐘內刷新網站只會去 localStorage 讀取資料。 10 分鐘期限一過,刷新頁面時才會去調取 API 讀取新的數據。( 3.6.0 新增了 storage 配置,可自行配置緩存時間)

position: left

position: right

card_tags color: false

butterfly-docs-card-tags-color-false.png

card_tags color: true

butterfly-docs-card-tags-color-true.png

aside button

運行時間

hexo-theme-butterfly-doc-runtime.png

最新評論

自定義添加欄目

點擊前往

右下角按鈕

按鈕位置

當開啟 chat 聊天服務後,聊天服務的按鈕可能會遮擋到右下角的按鈕,可以設置按鈕的位置。
非必要不建議設置,默認就行

1
2
# The distance between the bottom right button and the bottom (default unit: px)
rightside_bottom:

默認單位為 px,直接添加數字即可。

簡繁轉換

主題內置了一個簡單的簡繁轉換功能,採用一對一的形式配對。遇到一字多繁或者一字多簡的情況下,會出現不能正常轉換正確的簡繁體,請留意。

開啟後,右下角會有簡繁轉換按鈕。

1
2
3
4
5
6
7
8
9
10
11
12
translate:
enable: true
# 默認按鈕顯示文字(網站是簡體,應設置為'default: 繁')
default:
#網站默認語言,1: 繁體中文, 2: 簡體中文
defaultEncoding: 1
#延遲時間,若不在前, 要設定延遲翻譯時間, 如100表示100ms,默認為0
translateDelay: 0
#當文字是簡體時,按鈕顯示的文字
msgToTraditionalChinese: '繁'
#當文字是繁體時,按鈕顯示的文字
msgToSimplifiedChinese: '簡'

閲讀模式

閲讀模式下會去掉除文章外的內容,避免幹擾閲讀。

只會出現在文章頁面,右下角會有閲讀模式按鈕。

1
readmode: true

夜間模式

右下角會有夜間模式按鈕

1
2
3
4
5
6
7
8
9
# dark mode
darkmode:
enable: true
# dark mode和 light mode切換按鈕
button: true
autoChangeMode: false
# Set the light mode time. The value is between 0 and 24. If not set, the default value is 6 and 18
start: # 8
end: # 22
參數解釋
button是否在右下角顯示日夜模式切換按鈕
autoChangeMode自動切換的模式
autoChangeMode: 1 跟隨系統而變化,不支持的瀏覽器/系統將按照時間 start 到 end 之間切換為 light mode
autoChangeMode: 2 只按照時間 start 到 end 之間切換為 light mode ,其餘時間為 dark mode
autoChangeMode: false 取消自動切換
startlight mode 的開始時間
endlight mode 的結束時間

hexo-theme-butterfly-doc-dark-mode-1.png

滾動狀態百分比

1
2
# show scroll percent in scroll-to-top button
rightside_scroll_percent: true

按鈕排序

可對右下角按鈕進行排序

注意: 不要重複

1
2
3
4
5
6
7
# Don't modify the following settings unless you know how they work (非必要請不要修改 )
# Choose: readmode,translate,darkmode,hideAside,toc,chat,comment
# Don't repeat 不要重複
rightside_item_order:
enable: false
hide: # readmode,translate,darkmode,hideAside
show: # toc,chat,comment

全局配置

頁面錨點

開啟頁面錨點後,當你在進行滾動時,頁面鏈接會根據標題 ID 進行替換
(注意: 每替換一次,會留下一個歷史記錄。所以如果一篇文章有很多錨點的話,網頁的歷史記錄會很多。)

1
2
3
4
5
6
# anchor
anchor:
# when you scroll, the URL will update according to header id.
auto_update: false
# Click the headline to scroll and update the anchor
click_to_scroll: false
配置解釋
auto_update當滾動時,URL 將根據標題 id 更新。默認為 false
click_to_scroll點擊標題滾動並更新錨點。默認為 false

圖片描述

可開啟圖片 Figcaption 描述文字顯示

優先顯示圖片的 title 屬性,然後是 alt 屬性

1
photofigcaption: true

複製相關配置

可配置網站是否可以複製、複製的內容是否添加版權信息

1
2
3
4
5
6
copy:
enable: true
# Add the copyright information after copied content
copyright:
enable: false
limit_count: 150
配置解釋
enable是否開啟網站複製權限
copyright複製的內容後面加上版權信息
enable是否開啟複製版權信息添加
limit_count字數限制,當複製文字大於這個字數限制時,將在複製的內容後面加上版權信息

添加版權信息後

1
2
3
4
5
6
7
Lorem ipsum dolor sit amet, test link consectetur adipiscing elit. Strong text pellentesque ligula commodo viverra vehicula. Italic text at ullamcorper enim. Morbi a euismod nibh. Underline text non elit nisl. Deleted text tristique, sem id condimentum tempus, metus lectus venenatis mauris, sit amet semper lorem felis a eros. Fusce egestas nibh at sagittis auctor. Sed ultricies ac arcu quis molestie. Donec dapibus nunc in nibh egestas, vitae volutpat sem iaculis. Curabitur sem tellus, elementum nec quam id, fermentum laoreet mi. Ut mollis ullamcorper turpis, vitae facilisis velit ultricies sit amet. Etiam laoreet dui odio, id tempus justo tincidunt id. Phasellus scelerisque nunc sed nunc ultricies accumsan.


作者: Jerry
連結: http://localhost:4000/posts/bd3c650b/#Paragraph
來源: Butterfly
著作權歸作者所有。商業轉載請聯絡作者獲得授權,非商業轉載請註明出處。

字數統計

開啟字數統計功能,需要安裝hexo-wordcount插件

在 hexo 工作目錄下運行 npm install hexo-wordcount --save or yarn add hexo-wordcount

1
2
3
4
5
6
7
8
9
# Need to install the hexo-wordcount plugin
wordcount:
enable: false
# Display the word count of the article in post meta
post_wordcount: true
# Display the time to read the article in post meta
min2read: true
# Display the total word count of the website in aside's webinfo
total_wordcount: true
參數解釋
post_wordcount在文章頁面顯示字數
min2read在文章頁面顯示閲讀時間
total_wordcount在側邊欄顯示網站總字數

hexo-theme-butterfly-doc-word-count.png

hexo-theme-butterfly-docs-wordcount-totalcount.png

訪問人數 busuanzi (UV 和 PV)

訪問 busuanzi 的官方網站查看更多的介紹。

由於 busuanzi 的穩定性問題,偶爾會遇到無法訪問的情況,請留意。

文章頁的訪問人數統計,是通過 busuanzi 這個插件實現的。個別評論系統自帶訪問人數統計功能,可以在相對應的評論系統配置中進行開啟,其會代替 busuanzi 的統計。

1
2
3
4
busuanzi:
site_uv: true
site_pv: true
page_pv: true

如果需要修改 busuanzi 的 CDN 鏈接,可通過 主題配置文件CDN 中的 option 進行修改

1
2
3
CDN:
option:
busuanzi: xxxxxxxxx

hexo-theme-butterfly-doc-busuanzi-site-pv.png

hexo-theme-butterfly-doc-pv.png

Math 數學

主題支持兩種數學公式渲染引擎,MathJaxKaTeX。你可以根據自己的需求選擇一種。

1
2
3
4
5
6
7
8
9
# About the per_page
# if you set it to true, it will load mathjax/katex script in each page
# if you set it to false, it will load mathjax/katex script according to your setting (add the 'mathjax: true' or 'katex: true' in page's front-matter)
math:
# Choose: mathjax, katex
# Leave it empty if you don't need math
use:
per_page: true
hide_scrollbar: false
參數解釋
use選擇數學公式渲染引擎,選擇 mathjaxkatex,如果不需要數學公式,請留空
per_page是否每一頁都加載數學公式渲染引擎,如果設置為 false,則需要在文章的 Front-matter 添加 mathjax: truekatex: true,對應的文章才會加載數學公式渲染引擎
hide_scrollbar是否隱藏滾動條

不要在標題裏使用 mathjax 語法,toc 目錄不一定能正確顯示 mathjax,可能顯示 mathjax 代碼

建議使用 KaTex 獲得更好的效果,下文有介紹!

開啟 Mathjax 需要把 use 設置為 mathjax

mathjax 配置文件

1
2
3
4
5
mathjax:
# Enable the contextual menu
enableMenu: true
# Choose: all / ams / none, This controls whether equations are numbered and how
tags: none
參數解釋
enableMenu啟用右鍵菜單
tags選擇是否編號,all 全部編號,ams 只編號公式,none 不編號

使用 Mathjax 前,你需要卸載 hexo 的 markdown 渲染器,然後安裝hexo-renderer-kramed

以下操作在你 hexo 博客的目錄下 (不是 Butterfly 的目錄):

  1. 安裝插件

    1
    2
    npm uninstall hexo-renderer-marked --save
    npm install hexo-renderer-kramed --save
  2. 配置 hexo 根目錄的配置文件

    1
    2
    3
    4
    5
    6
    7
    8
    kramed:
    gfm: true
    pedantic: false
    sanitize: false
    tables: true
    breaks: true
    smartLists: true
    smartypants: true

效果:

hexo-theme-butterfly-doc-mathjax-2.jpg

不要在標題裏使用 KaTeX 語法,toc 目錄不能正確顯示 KaTeX。

開啟 KaTeX 需要把 use 設置為 katex

1
2
3
katex:
# Enable the copy KaTeX formula
copy_tex: false
參數解釋
copy_tex啟用複製 KaTeX 公式功能

你不需要添加 katex.min.js 來渲染數學方程。相應的你需要卸載你之前的 hexo 的 markdown 渲染器,然後安裝其它插件。

卸載掉 marked 插件,安裝 hexo-renderer-markdown-it

1
2
3
4
5
npm un hexo-renderer-marked --save # 如果有安裝這個的話,卸載
npm un hexo-renderer-kramed --save # 如果有安裝這個的話,卸載

npm i hexo-renderer-markdown-it --save # 需要安裝這個渲染插件
npm install katex @renbaoshuo/markdown-it-katex #需要安裝這個katex插件

在 hexo 的根目錄的 _config.yml 中配置

1
2
3
markdown:
plugins:
- '@renbaoshuo/markdown-it-katex'

如需配置其它參數,請參考 katex 官網

注意,此方法生成的 katex 沒有斜體

卸載掉 marked 插件,然後安裝新的hexo-renderer-markdown-it-plus:

1
2
3
4
5
6
7
8
9
10
11
# 替換 `hexo-renderer-kramed` 或者 `hexo-renderer-marked` 等hexo的markdown渲染器
# 你可以在你的package.json裏找到hexo的markdwon渲染器,並將其卸載
npm un hexo-renderer-marked --save

# or

npm un hexo-renderer-kramed --save


# 然後安裝 `hexo-renderer-markdown-it-plus`
npm i @upupming/hexo-renderer-markdown-it-plus --save

注意到 hexo-renderer-markdown-it-plus已經無人持續維護, 所以我們使用 @upupming/hexo-renderer-markdown-it-plus。 這份 fork 的代碼使用了 @neilsustc/markdown-it-katex同時它也是 VSCode 的插件 Markdown All in One所使用的, 所以我們可以獲得最新的 KaTex 功能例如 \tag{}

你還可以通過 @neilsustc/markdown-it-katex控制 KaTeX 的設置,所有可配置的選項參見 https://katex.org/docs/options.html。 比如你想要禁用掉 KaTeX 在命令行上輸出的宂長的警告信息,你可以在根目錄的 _config.yml 中使用下面的配置將 strict 設置為 false:

1
2
3
4
5
6
7
markdown_it_plus:
plugins:
- plugin:
name: '@neilsustc/markdown-it-katex'
enable: true
options:
strict: false

當然,你還可以利用這個特性來定義一些自己常用的 macros

因為 KaTeX 更快更輕量,因此沒有 MathJax 的功能多(比如右鍵菜單)。為那些使用 MathJax 的用户,主題也內置了 katex 的 複製 功能。

hexo-theme-butterfly-doc-katex.gif

搜索

主題支持三種搜索方式(algolia_search / local_search / docsearch),你可以選擇一種或者多種搜索方式。

1
2
3
4
5
search:
# Choose: algolia_search / local_search / docsearch
# leave it empty if you don't need search
use:
placeholder:
參數解釋
use選擇你需要的搜索方式,不需要開啟留空白
placeholder搜索框的提示文字

記得運行 hexo clean

如果你使用 hexo-algoliasearch,請記得配置 fields 參數的 title, permalinkcontent

  1. 你需要安裝 hexo-algoliahexo-algoliasearch. 根據它們的説明文檔去做相應的配置。

  2. 把主題配置文件中 search 的 use 配置為 algolia_search

其它配置

1
2
3
4
# Algolia Search
algolia_search:
# Number of search results per page
hitsPerPage: 6
參數解釋
hitsPerPage每頁顯示的搜索結果數量
  1. 運行 Hexo

記得運行 hexo clean

  1. 你需要安裝 hexo-generator-searchdb 或者 hexo-generator-search,根據它的文檔去做相應配置

  2. 把主題配置文件中 search 的 use 配置為 local_search

其它配置

1
2
3
4
5
6
7
8
9
# Local Search
local_search:
# Preload the search data when the page loads.
preload: false
# Show top n results per article, show all results by setting to -1
top_n_per_article: 1
# Unescape html strings to the readable one.
unescape: false
CDN:
參數解釋
preload預加載,開啟後,進入網頁後會自動加載搜索文件。關閉時,只有點擊搜索按鈕後,才會加載搜索文件
top_n_per_article匹配的文章結果,默認顯示最開始的 1 段結果
unescape將 html 字符串解碼為可讀字符串
CDN搜索文件的 CDN 地址(默認使用的本地鏈接)

DocSearch 是另一款由 algolia 提供的搜索服務,具體申請和使用請查看 DocSearch 文檔

  1. 你需要申請 DocSearch,並獲取你的 appId, apiKey, indexName
  2. 把主題配置文件中 search 的 use 配置為 docsearch

其它配置

1
2
3
4
5
6
7
# Docsearch
# https://docsearch.algolia.com/
docsearch:
appId:
apiKey:
indexName:
option:
參數解釋
appId【必須】你的 Algolia 應用 ID
apiKey【必須】你的 Algolia 搜索 API key
indexName【必須】你的 Algolia index name
option【可選】其餘的 docsearch 配置
具體配置可查這裏

hexo-theme-butterfly-docs-docsearch.png

分享

只能選擇一個分享服務商

主題支持兩種分享方式,一種是sharejs,一種是addtoany

1
2
3
4
share:
# Choose: sharejs / addtoany
# Leave it empty if you don't need share
use: sharejs
參數解釋
use選擇分享方式,可選sharejsaddtoany,如果不需要分享請留空

如果你不知道 sharejs,看看它的説明。

1
2
3
4
# Share.js
# https://github.com/overtrue/share.js
sharejs:
sites: facebook,twitter,wechat,weibo,qq

hexo-theme-butterfly-doc-sharejs.png

可以到addtoany查看使用説明

1
2
addtoany:
item: facebook,twitter,wechat,sina_weibo,facebook_messenger,email,copy_link

hexo-theme-butterfly-doc-addtoany.png

評論

主題支持多種評論系統,你可以根據自己的喜好選擇一種。
你也可以選擇雙評論,只需要配置兩個評論(第一個為默認顯示)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
comments:
# Up to two comments system, the first will be shown as default
# Leave it empty if you don't need comments
# Choose: Disqus/Disqusjs/Livere/Gitalk/Valine/Waline/Utterances/Facebook Comments/Twikoo/Giscus/Remark42/Artalk
# Format of two comments system : Disqus,Waline
use:
# Display the comment name next to the button
text: true
# Lazyload: The comment system will be load when comment element enters the browser's viewport.
# If you set it to true, the comment count will be invalid
lazyload: false
# Display comment count in post's top_img
count: false
# Display comment count in Home Page
card_post_count: false
參數解釋
use使用的評論(請注意,最多支持兩個,如果不需要請留空)
注意:雙評論不能是 Disqus 和 Disqusjs 一起,由於其共用同一個 ID,會出錯
text是否顯示評論服務商的名字
lazyload是否為評論開啟 lazyload,開啟後,只有滾動到評論位置時才會加載評論所需要的資源(_開啟 lazyload 後,評論數將不顯示_)
count是否在文章頂部顯示評論數
livere、Giscus 和 utterances 不支持評論數顯示
card_post_count是否在首頁文章卡片顯示評論數
gitalk、livere 、Giscus 和 utterances 不支持評論數顯示

單評論

雙評論

註冊 disqus,配置你自己的 disqus,然後在Butterfly裏開啟它。

1
2
disqus:
shortname:
參數解釋
shortname你的 Disqus 短名稱,你可以在這裏創建

與 Disqus 一樣,但由於 Disqus 在中國大陸無法訪問, 使用 Disqusjs 可以在無法訪問 Disqus 時顯示評論。具體可參考Disqusjs

1
2
3
4
disqusjs:
shortname:
apikey:
option:
參數解釋
shortname你的 Disqus 短名稱,你可以在這裏創建
apikey你的 Disqus API Key,你可以在這裏創建
option可選配置

當無法訪問 Disqus 時,會顯示

註冊來必力,配置你自己的來必力設置,然後在Butterfly裏開啟它。

1
2
livere:
uid:
參數解釋
uid你的來必力 uid,你可以在這裏創建

livere 的 uid 你能在這裏找到:

hexo-theme-butterfly-doc-laibili.jpg

遵循 gitalk的指示去獲取你的 github Oauth 應用的 client id 和 secret 值。以及查看它的相關配置説明。

1
2
3
4
5
6
7
gitalk:
client_id:
client_secret:
repo:
owner:
admin:
option:
參數解釋
client_idGitHub 應用的 client ID
client_secretGitHub 應用的 client secret
repo存儲 issues 的 repo
owner存儲 issues 的 repo 的擁有者
adminGitHub repository 的所有者和合作者 (對這個 repository 有寫權限的用户)
option可選配置

遵循 Valine的指示去配置你的 LeanCloud 應用。以及查看相應的配置説明。

1
2
3
4
5
6
7
8
9
10
valine:
appId:
appKey:
avatar: monsterid
# This configuration is suitable for domestic custom domain name users, overseas version will be automatically detected (no need to manually fill in)
serverURLs:
bg:
# Use Valine visitor count as the page view count
visitor: false
option:
參數解釋
appIdLeanCloud 應用的 appId
appKeyLeanCloud 應用的 appKey
avatar頭像類型,可選值:''mpidenticonmonsteridwavatarretrorobohashblank404
serverURLs自定義 LeanCloud 服務器地址,如果你使用國內自定義域名,請填寫此項,否則無需填寫
bg背景圖片,可填寫圖片地址,如https://example.com/bg.jpg
visitor是否顯示文章閲讀數
option可選配置

開啟 visitor 後,文章頁的訪問人數將改為 Valine 提供,而不是 不蒜子

Valine 於 v1.4.5 開始支持自定義表情,如果你需要自行配置,請在emojiCDN配置表情 CDN。

同時在 Hexo 工作目錄下的source/_data/創建一個 json 文件valine.json,等同於 Valine 需要配置的emojiMapsvaline.json配置方式可參考如下

valine.json

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"tv_doge": "6ea59c827c414b4a2955fe79e0f6fd3dcd515e24.png",
"tv_親親": "a8111ad55953ef5e3be3327ef94eb4a39d535d06.png",
"tv_偷笑": "bb690d4107620f1c15cff29509db529a73aee261.png",
"tv_再見": "180129b8ea851044ce71caf55cc8ce44bd4a4fc8.png",
"tv_冷漠": "b9cbc755c2b3ee43be07ca13de84e5b699a3f101.png",
"tv_發怒": "34ba3cd204d5b05fec70ce08fa9fa0dd612409ff.png",
"tv_發財": "34db290afd2963723c6eb3c4560667db7253a21a.png",
"tv_可愛": "9e55fd9b500ac4b96613539f1ce2f9499e314ed9.png",
"tv_吐血": "09dd16a7aa59b77baa1155d47484409624470c77.png",
"tv_呆": "fe1179ebaa191569b0d31cecafe7a2cd1c951c9d.png",
"tv_嘔吐": "9f996894a39e282ccf5e66856af49483f81870f3.png",
"tv_困": "241ee304e44c0af029adceb294399391e4737ef2.png",
"tv_壞笑": "1f0b87f731a671079842116e0991c91c2c88645a.png",
"tv_大佬": "093c1e2c490161aca397afc45573c877cdead616.png",
"tv_大哭": "23269aeb35f99daee28dda129676f6e9ea87934f.png",
"tv_委屈": "d04dba7b5465779e9755d2ab6f0a897b9b33bb77.png",
"tv_害羞": "a37683fb5642fa3ddfc7f4e5525fd13e42a2bdb1.png",
"tv_尷尬": "7cfa62dafc59798a3d3fb262d421eeeff166cfa4.png",
"tv_微笑": "70dc5c7b56f93eb61bddba11e28fb1d18fddcd4c.png",
"tv_思考": "90cf159733e558137ed20aa04d09964436f618a1.png",
"tv_驚嚇": "0d15c7e2ee58e935adc6a7193ee042388adc22af.png"
}

hexo-theme-butterfly-doc-valine.png

default_avatar

參數效果
留空(默認)
mp
identicon
monsterid
wavatar
retro
robohash
blank
404

Waline - 一款從 Valine 衍生的帶後端評論系統。可以將 Waline 等價成 With backend Valine。

具體配置可參考 waline 文檔

1
2
3
4
5
waline:
serverURL: # Waline server address url
bg: # waline background
pageview: false
option:
參數解釋
serverURLWaline 服務器地址
bg背景圖片,可填寫圖片地址,如https://example.com/bg.jpg
pageview是否顯示文章閲讀數
option可選配置

開啟 pageview 後,文章頁的訪問人數將改為 Waline 提供,而不是 不蒜子

hexo-theme-butterfly-doc-valine.png

與 Gitalk 一樣,基於 GitHub issues 的評論工具。相對於 Gitalk,其相對需要權限較少。具體配置可參考Utterances

1
2
3
4
5
6
7
utterances:
repo:
# 可選 pathname/url/title/og:title
issue_term: pathname
# 可選 github-light/github-dark/github-dark-orange/icy-dark/dark-blue/photon-dark
light_theme: github-light
dark_theme: photon-dark
參數解釋
repoGitHub repository 的全名,例如:owner/repo
issue_term用於識別問題的標籤,可以是 pathname/url/title/og:title
light_theme亮色主題,可選值:github-lightgithub-darkgithub-dark-orangeicy-darkdark-bluephoton-dark
dark_theme暗色主題,可選值:github-lightgithub-darkgithub-dark-orangeicy-darkdark-bluephoton-dark

hexo-theme-butterfly-docs-Utterances.png

Facebook Comments是 Facebook 提供的評論插件,需要登陸 Facebook 才可評論。

1
2
3
4
5
6
7
8
9
10
# Facebook Comments Plugin
# https://developers.facebook.com/docs/plugins/comments/
facebook_comments:
app_id:
# optional
user_id:
pageSize: 10
# Choose: social / time / reverse_time
order_by: social
lang: zh_TW
參數解釋
app_idFacebook App ID,你可以在這裏創建
user_idFacebook User ID,可選,用於管理評論
pageSize顯示的評論數
order_by評論排序方式,social/time/reverse_time
lang語言

hexo-butterfly-docs-facebook-comments.png

Twikoo 是一個簡潔、安全、無後端的靜態網站評論系統,基於騰訊雲開發

具體如何配置評論,請查看 Twikoo 文檔

你只需要把獲取到的 環境ID (envId) 填寫到配置上去就行

1
2
3
4
5
twikoo:
envId:
region:
visitor: false
option:
參數解釋
envId環境 ID
region環境地域,默認為 ap-shanghai,如果您的環境地域不是上海,需傳此參數
visitor是否顯示文章閲讀數
option可選配置

開啟 visitor 後,文章頁的訪問人數將改為 Twikoo 提供,而不是 不蒜子

一個基於 GitHub Discussions 的評論

1
2
3
4
5
6
7
8
9
10
# Giscus
# https://giscus.app/
giscus:
repo:
repo_id:
category_id:
theme:
light: light
dark: dark
option:
參數解釋
repoGitHub repository 的全名,例如:owner/repo
repo_idGitHub repository 的 ID
category_idGitHub repository 的分類 ID
option可選配置

具體配置的意思,請參考 Giscus 的文檔

hexo-theme-butterfly-docs-giscus.png

Remark42 是一款只支持私有部署的評論

具體部署請查看 Installation | Remark42

1
2
3
4
remark42:
host: # Your Host URL
siteId: # Your Site ID
option:
參數解釋
host你的 Host URL
siteId你的 Site ID
option可選配置

Artalk 是一款只支持私有部署的評論

具體部署請查看 Artalk | 自託管評論系統

1
2
3
4
5
6
artalk:
server:
site:
# Use Artalk visitor count as the page view count
visitor: false
option:
參數解釋
server你的 Server URL
site你的 Site ID
visitor是否顯示文章閲讀數
option可選配置

開啟 visitor 後,文章頁的訪問人數將改為 Artalk 提供,而不是 不蒜子

在綫聊天

主題內置了多種在綫聊天工具。你可以選擇開啟一種,方便你與訪客的交流。

1
2
3
4
5
6
7
8
9
chat:
# Choose: chatra/tidio/crisp
# Leave it empty if you don't need chat
use:
# Chat Button [recommend]
# It will create a button in the bottom right corner of website, and hide the origin button
rightside_button: false
# The origin chat button is displayed when scrolling up, and the button is hidden when scrolling down
button_hide_show: false
參數解釋
use選擇你要使用的聊天工具,可選擇chatra/tidio/crisp
rightside_button是否開啟右下角聊天按鈕
button_hide_show是否開啟滾動時隱藏聊天按鈕

這些工具都提供了一個按鈕可以打開/關閉聊天窗口。
主題也提供了一個集合主題特色的按鈕來替換這些工具本身的按鈕,這個聊天按鈕將會出現在右下角裏。
你只需要把rightside_button打開就行。

為了不影響訪客的體驗,主題提供一個button_hide_show配置
設為true後,使用工具提供的按鈕時,只有向上滾動才會顯示聊天按鈕,向下滾動時會隱藏按鈕。

開啟 chatra, 把主題配置文件中 chatuse設置為chatra

配置 chatra,需要知道Public key

打開chatra並註冊賬號。
你可以在Preferences中找到Public key

hexo-theme-butterfly-docs-chat-chatra-id.png

1
2
3
4
# chatra
# https://chatra.io/
chatra:
id: xxxxxxxx

chatra的樣式你可以Chat Widget自行配置

hexo-theme-butterfly-docs-chat-chatra-ui-settings.png

Demo

開啟 tidio, 把主題配置文件中 chatuse設置為tidio

配置 tidio,需要知道Public key

打開tidio並註冊賬號。
你可以在Preferences > Developer中找到Public key

hexo-theme-butterfly-docs-chat-tidio-id.png

1
2
3
4
# tidio
# https://www.tidio.com/
tidio:
public_key: XXXX

tidio的樣式你可以Channels自行配置

hexo-theme-butterfly-docs-chat-tidio-setting.png

Demo

開啟 crisp, 把主題配置文件中 chatuse設置為crisp

打開crisp並註冊帳號

找到需要的網站 ID

1
2
3
4
# crisp
# https://crisp.chat/en/
crisp:
website_id: xxxxxxxx

hexo-theme-buttefly-docs-chat-crisp.png

hexo-theme-butterfly-docs-crisp-demo.png

分析統計

  1. 登錄百度統計的官方網站

  2. 找到你百度統計的統計代碼

hexo-theme-butterfly-doc-baidu-tongji.jpg

  1. 修改 主題配置文件
1
baidu_analytics: 你的代碼
  1. 登錄谷歌分析的官方網站

  2. 找到你的谷歌分析的跟蹤 ID

hexo-theme-butterfly-doc-google-analytics.jpg

  1. 修改 主題配置文件
1
google_analytics: 你的代碼 # 通常以`UA-`打頭
  1. 登錄 Cloudflare 分析的官方網站
  2. 找到 JavaScript 程式碼片段
  3. 找到你的 token

hexo-theme-butterfly-docs-cloudflare-analytics-id.png

  1. 修改 主題配置文件

    1
    2
    3
    # Cloudflare Analytics
    # https://www.cloudflare.com/zh-tw/web-analytics/
    cloudflare_analytics:
  1. 登錄 Clarity 的官方網站

  2. 創建 PROJECT

  3. 找到你的 ID

hexo-theme-butterfly-docs-clarity-id.png

  1. 修改 主題配置文件

    1
    2
    3
    # Microsoft Clarity
    # https://clarity.microsoft.com/
    microsoft_clarity:

廣告

主題已集成谷歌廣告(自動廣告)

1
2
3
4
5
6
google_adsense:
enable: true
auto_ads: true
js: https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js
client: # 填入個人識別碼
enable_page_level_ads: true

hexo-theme-butterfly-docs-google-adsense1.png

主題預留了三個位置可供插入廣告,分別為主頁文章(每三篇文章出現廣告)/aside 公告之後/文章頁打賞之後。
把 html 代碼填寫到對應的位置

1
2
3
4
ad:
index:
aside:
post:

例如:

1
index: <ins class="adsbygoogle" style="display:block" data-ad-format="fluid" data-ad-layout-key="xxxxxxxxxxxx" data-ad-client="ca-pub-xxxxxxxxxx" data-ad-slot="xxxxxxxxxx"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({})</script>

網站驗證

如果需要搜索引擎收錄網站,可能需要登錄對應搜索引擎的管理平台進行提交。
各自的驗證碼可從各自管理平台拿到

1
2
3
4
5
site_verification:
# - name: google-site-verification
# content: xxxxxx
# - name: baidu-site-verification
# content: xxxxxxx

美化/特效

自定義主題色

可以修改大部分 UI 顏色

修改 主題配置文件,比如:

顏色值必須被雙引號包裹,就像"#000"而不是#000。否則將會在構建的時候報錯!

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
theme_color:
enable: true
main: '#49B1F5'
paginator: '#00c4b6'
button_hover: '#FF7242'
text_selection: '#00c4b6'
link_color: '#99a9bf'
meta_color: '#858585'
hr_color: '#A4D8FA'
code_foreground: '#F47466'
code_background: 'rgba(27, 31, 35, .05)'
toc_color: '#00c4b6'
blockquote_padding_color: '#49b1f5'
blockquote_background_color: '#49b1f5'
scrollbar_color: '#49b1f5'
meta_theme_color_light: 'ffffff'
meta_theme_color_dark: '#0d0d0d'
參數解釋
main主題色
paginator分頁器顏色
button_hover按鈕 hover 顏色
text_selection文字選中顏色
link_color鏈接顏色
meta_color文章元數據顏色
hr_color分割線顏色
code_foreground代碼前景色
code_background代碼背景色
toc_color目錄顏色
blockquote_padding_color引用邊框顏色
blockquote_background_color引用背景色
scrollbar_color滾動條顏色
meta_theme_color_lightlight mode 主題色
meta_theme_color_darkdark mode 主題色

文字左右對齊

可設置文字向兩側對齊,對最後一行無效

1
2
# Stretches the lines so that each line has equal width(文字向兩側對齊,對最後一行無效)
text_align_justify: true

text_align_justify: false

text_align_justify: true

黑色遮罩

為了避免圖片過於鮮艷而導致文字無法閲讀,默認為頂部圖頁腳添加黑色遮罩

1
2
3
4
# Add a mask to the header and footer
mask:
header: true
footer: true

頁面加載動畫 preloader

當進入網頁時,因為加載速度的問題,可能會導致 top_img 圖片出現斷層顯示,或者網頁加載不全而出現等待時間,開啟 preloader 後,會顯示加載動畫,等頁面加載完,加載動畫會消失。

主題支持 pace.js 的加載動畫,具體可查看 pace.js

配置 butterly.yml

1
2
3
4
5
6
7
8
9
# 加載動畫 Loading Animation
preloader:
enable: false
# source
# 1. fullpage-loading
# 2. pace (progress bar)
source: 1
# pace theme (see https://codebyzach.github.io/pace/)
pace_css_url:

fullpage-loading

hexo-theme-butterfly-docs-preloader.gif

頁面美化

會改變 ol、ul、h1-h5 的樣式

field配置生效的區域

  • post 只在文章頁生效
  • site 在全站生效
1
2
3
4
5
6
# 美化頁面顯示
beautify:
enable: true
field: site # site/post
title-prefix-icon: '\f0c1'
title-prefix-icon-color: '#F47466'
參數解釋
enable是否開啟美化
field美化的區域
title-prefix-icon標題前綴的 icon
title-prefix-icon-color標題前綴的 icon 的顏色

title-prefix-icon填寫的是fontawesome的icon的Unicode數。
hexo-theme-butterfly-doc-fontwesome-unicode.png

未開啟美化

hexo-theme-butterfly-doc-post-beautify.png

開啟美化

hexo-theme-butterfly-doc-post-beautif.png

自定義字體和字體大小

全局字體

可自行設置字體的font-family

如不需要配置,請留空

1
2
3
4
5
6
7
# Global font settings
# Don't modify the following settings unless you know how they work (非必要不要修改)
font:
global-font-size:
code-font-size:
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Lato, Roboto, "PingFang SC", "Microsoft JhengHei", "Microsoft YaHei", sans-serif
code-font-family: consolas, Menlo, "PingFang SC", "Microsoft JhengHei", "Microsoft YaHei", sans-serif
參數解釋
global-font-size全局字體大小
code-font-size代碼字體大小
font-family全局字體
code-font-family代碼字體

Blog 標題字體

可自行設置字體的font-family
如不需要配置,請留空。
如不需要使用網絡字體,只需要把 font_link 留空就行

1
2
3
4
5
# Font settings for the site title and site subtitle
# 左上角網站名字 主頁居中網站名字
blog_title_font:
font_link: https://fonts.googleapis.com/css?family=Titillium+Web&display=swap
font-family: Titillium Web, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft JhengHei', 'Microsoft YaHei', sans-serif
參數解釋
font_link網絡字體的連結
font-family網站標題字體

打字效果

打字效果activate-power-mode

1
2
3
4
5
6
7
# Typewriter Effect (打字效果)
# https://github.com/disjukr/activate-power-mode
activate_power_mode:
enable: true
colorful: true # open particle animation (冒光特效)
shake: true # open shake (抖動特效)
mobile: false
參數解釋
enable是否開啟打字效果
colorful是否開啟冒光特效
shake是否開啟抖動特效
mobile是否在移動端開啟打字效果

hexo-theme-butterfly-doc-type-animation.gif

背景特效

好看的綵帶背景,可設置每次刷新更換綵帶,或者每次點擊更換綵帶

1
2
3
4
5
6
7
8
9
canvas_ribbon:
enable: false
# The size of ribbon
size: 150
# The opacity of ribbon (0 ~ 1)
alpha: 0.6
zIndex: -1
click_to_change: false
mobile: false
參數解釋
enable是否開啟綵帶特效
size綵帶的大小
alpha綵帶的透明度
zIndex綵帶的層級
click_to_change點擊更換綵帶
mobile手機端是否顯示綵帶

相關配置可查看canvas_ribbon

好看的綵帶背景,會飄動

1
2
3
canvas_fluttering_ribbon:
enable: true
mobile: false # false 手機端不顯示 true 手機端顯示

1
2
3
4
5
6
7
8
9
10
11
canvas_nest:
enable: false
# Color of lines, default: '0,0,0'; RGB values: (R,G,B).(note: use ',' to separate.)
color: '0,0,255'
# The opacity of line (0~1)
opacity: 0.7
# The z-index property of the background
zIndex: -1
# The number of lines
count: 99
mobile: false
參數解釋
enable是否開啟綵帶特效
color綵帶的顏色
opacity綵帶的透明度
zIndex綵帶的層級
count綵帶的條數
mobile手機端是否顯示綵帶

鼠標點擊效果

1
2
3
4
fireworks:
enable: true
zIndex: 9999 # -1 or 9999
mobile: false
參數解釋
enable是否開啟煙花特效
zIndex煙花的層級, -1 代表煙火效果在底部 /
9999 代表煙火效果在前面
mobile手機端是否顯示煙花

hexo-theme-butterfly-doc-firewall.gif

1
2
3
4
# 點擊出現愛心
click_heart:
enable: true
mobile: false

click_heart.gif

1
2
3
4
5
6
7
8
9
10
# 點擊出現文字,文字可自行修改
ClickShowText:
enable: false
text:
- I
- LOVE
- YOU
fontSize: 15px
random: false # 文字隨機顯示
mobile: false
參數解釋
enable是否開啟文字特效
text文字內容
fontSize文字大小
random文字隨機顯示
mobile手機端是否顯示文字

ClickShowText.gif

圖片大圖查看模式

如果你並不想為某張圖片添加大圖查看模式,你可以使用 html 格式引用圖片,併為圖片添加 no-lightbox class 名

1
2
3
4
5
# Choose: fancybox / medium_zoom
# https://github.com/francoischalifour/medium-zoom
# https://fancyapps.com/fancybox/
# Leave it empty if you don't need lightbox
lightbox:

可配置 fancyboxmedium_zoom 來啟用圖片大圖查看模式
不需要大圖查看模式時,請留空

FancyBox

fancybox.gif

Medium Zoom

medium_zoom.gif

標簽外掛

具體可查看 標簽外掛

Mermaid

主題支持 Mermaid.js,可以在文章中使用 Mermaid.js 繪製流程圖、序列圖等。

配置:

1
2
3
4
5
6
7
8
9
10
# Mermaid
# https://github.com/mermaid-js/mermaid
mermaid:
enable: true
# Write Mermaid diagrams using code blocks
code_write: true
# built-in themes: default / forest / dark / neutral
theme:
light: default
dark: dark

書寫方法

主題支持兩種書寫方法

標簽外挂

你可以使用標簽外挂的方式來使用 Mermaid.js
具體可查看 Mermaid 標簽外掛

代碼塊書寫

你可以使用代碼塊的方式來使用 Mermaid.js

  1. hexo 版本需要 7.0 或以上

  2. hexo 的配置文件 要添加 exclude_languages: ['mermaid']

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    syntax_highlighter: 'highlight.js'
    highlight:
    line_number: true
    auto_detect: false
    tab_replace: ''
    wrap: true
    hljs: false
    exclude_languages: ['mermaid']
    prismjs:
    preprocess: true
    line_number: true
    tab_replace: ''
    exclude_languages: ['mermaid']
  3. butterfly的配置文件中 mermaid 的 code_write 设为 true

例子

1
2
3
4
5
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;

Pjax

當用户點擊鏈接,通過 ajax 更新頁面需要變化的部分,然後使用 HTML5 的 pushState 修改瀏覽器的 URL 地址。

這樣可以不用重複加載相同的資源(css/js), 從而提升網頁的加載速度。

1
2
3
4
5
pjax:
enable: false
# Exclude the specified pages from pjax, such as '/music/'
exclude:
# - /xxxxxx/

對於一些第三方插件,有些並不支持 pjax 。
你可以把網頁加入到 exclude 裏,這個網頁會被 pjax 排除在外。
點擊該網頁會重新加載網站

使用 pjax 後,一些自己 DIY 的 js 可能會無效,跳轉頁面時需要重新調用,請參考Pjax 文檔
使用 pjax 後,一些個別頁面加載的 js/css,將會改為所有頁面都加載

Snackbar 彈窗

Snackbar 彈窗,根據自己愛好開啟

1
2
3
4
5
6
7
8
9
# Snackbar 彈窗
# https://github.com/polonel/SnackBar
# position 彈窗位置
# 可選 top-left / top-center / top-right / bottom-left / bottom-center / bottom-right
snackbar:
enable: true
position: bottom-left
bg_light: '#49b1f5' #light mode時彈窗背景
bg_dark: '#2d3035' #dark mode時彈窗背景

未開啟 Snackbar

開啟 Snackbar

Instantpage

當鼠標懸停到鏈接上超過 65 毫秒時,Instantpage 會對該鏈接進行預加載,可以提升訪問速度。

修改配置文件

1
2
3
# https://instant.page/
# prefetch (預加載)
instantpage: true

Pangu

如果你跟我一樣,每次看到網頁上的中文字和英文、數字、符號擠在一塊,就會坐立難安,忍不住想在它們之間加個空格。這個外掛正是你在網路世界走跳所需要的東西,它會自動替你在網頁中所有的中文字和半形的英文、數字、符號之間插入空白。

修改配置文件

1
2
3
4
5
# https://github.com/vinta/pangu.js
# Insert a space between Chinese character and English character (中英文之間添加空格)
pangu:
enable: false
field: post # site/post

field只支持兩個參數,post(只在文章頁生效)和site(全站生效)

PWA

要為Butterfly配上 PWA 特性, 你需要如下幾個步驟:

  1. 打開 hexo 工作目錄

  2. npm install hexo-offline --save 或者 yarn add hexo-offline

  3. 在根目錄創建 hexo-offline.config.cjs 文件,並增加以下內容。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// offline config passed to workbox-build.
module.exports = {
globPatterns: ['**/*.{js,html,css,png,jpg,gif,svg,webp,eot,ttf,woff,woff2}'],
// 靜態文件合集,如果你的站點使用了例如 webp 格式的文件,請將文件類型添加進去。
globDirectory: 'public',
swDest: 'public/service-worker.js',
maximumFileSizeToCacheInBytes: 10485760, // 緩存的最大文件大小,以字節為單位。
skipWaiting: true,
clientsClaim: true,
runtimeCaching: [
// 如果你需要加載 CDN 資源,請配置該選項,如果沒有,可以不配置。
// CDNs - should be CacheFirst, since they should be used specific versions so should not change
{
urlPattern: /^https:\/\/cdn\.example\.com\/.*/, // 可替換成你的 URL
handler: 'CacheFirst'
}
]
}

更多內容請查看 hexo-offline的官方文檔

  1. 主題配置文件中開啟 pwa 選項。
1
2
3
4
5
6
7
pwa:
enable: true
manifest: /img/pwa/manifest.json
apple_touch_icon: /img/pwa/apple-touch-icon.png
favicon_32_32: /img/pwa/32.png
favicon_16_16: /img/pwa/16.png
mask_icon: /img/pwa/safari-pinned-tab.svg
  1. 在創建source/目錄中創建manifest.json文件。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "string",
"short_name": "Junzhou",
"theme_color": "#49b1f5",
"background_color": "#49b1f5",
"display": "standalone",
"scope": "/",
"start_url": "/",
"icons": [
{
"src": "images/pwaicons/36.png",
"sizes": "36x36",
"type": "image/png"
},
{
"src": "images/pwaicons/48.png",
"sizes": "48x48",
"type": "image/png"
},
{
"src": "images/pwaicons/72.png",
"sizes": "72x72",
"type": "image/png"
},
{
"src": "images/pwaicons/96.png",
"sizes": "96x96",
"type": "image/png"
},
{
"src": "images/pwaicons/144.png",
"sizes": "144x144",
"type": "image/png"
},
{
"src": "images/pwaicons/192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "images/pwaicons/512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"splash_pages": null
}

你也可以通過 Web App Manifest快速創建manifest.json。(Web App Manifest 要求至少包含一個 512*512 像素的圖標)

  1. 可以通過Chrome插件Lighthouse檢查 PWA 配置是否生效以及配置是否正確。

    • 打開博客頁面
    • 啟動Lighthouse插件 (Lighthouse插件要求至少包含一個 512*512 像素的圖標)

關於 PWA(漸進式增強 Web 應用)的更多內容請參閲 Google Tools for Web Developers

Open Graph

head 裏增加一些 meta 資料,例如縮略圖、標題、時間等等。當你分享網頁到一些平台時,平台會讀取 Open Graph 的內容,展示縮略圖,標題等等信息。

修改配置文件

1
2
3
4
5
6
7
8
9
10
11
12
# Open graph meta tags
# https://hexo.io/docs/helpers#open-graph
Open_Graph_meta:
enable: true
option:
# twitter_card:
# twitter_image:
# twitter_id:
# twitter_site:
# google_plus:
# fb_admins:
# fb_app_id:

CSS 前綴

有些 CSS 並不是所有瀏覽器都支持,需要增加對應的前綴才會生效。

開啟 css_prefix 後,會自動為一些 CSS 增加前綴。(會增加 20%的體積)

修改配置文件

1
2
# Add the vendor prefixes to ensure compatibility
css_prefix: true

Inject

2.3.0 以上支持

如想添加額外的 js/css/meta 等等東西,可以在 Inject 裏添加,支持添加到 head(</body>標籤之前)和 bottom(</html>標籤之前)。

請注意:以標準的 html 格式添加內容

例如

1
2
3
4
5
inject:
head:
- <link rel="stylesheet" href="/self.css">
bottom:
- <script src="xxxx"></script>

留意: 如果你的網站根目錄不是'/',使用本地圖片時,需加上你的根目錄。
例如:網站是 https://yoursite.com/blog,引用css/xx.css,則設置為<link rel="stylesheet" href="/blog/css/xx.css">

CDN

配置文件中最後一部分 CDN,裏面是主題所引用到的文件,可自行配置 CDN。(非必要請勿修改,配置後請確認鏈接是否能訪問)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# CDN Settings
# Don't modify the following settings unless you know how they work
CDN:
# The CDN provider for internal and third-party scripts
# Options for both: local/jsdelivr/unpkg/cdnjs/custom
# Note: Dev version can only use 'local' for internal scripts
# Note: When setting third-party scripts to 'local', you need to install hexo-butterfly-extjs
internal_provider: local
third_party_provider: jsdelivr

# Add version number to url, true or false
version: false

# Custom format
# For example: https://cdn.staticfile.org/${cdnjs_name}/${version}/${min_cdnjs_file}
custom_format:

option:
# abcjs_basic_js:
# activate_power_mode:
# algolia_js:
# algolia_search:
# aplayer_css:
# aplayer_js:
# artalk_css:
# artalk_js:
# blueimp_md5:
# busuanzi:
# canvas_fluttering_ribbon:
# canvas_nest:
# canvas_ribbon:
# click_heart:
# clickShowText:
# disqusjs:
# disqusjs_css:
# docsearch_css:
# docsearch_js:
# egjs_infinitegrid:
# fancybox:
# fancybox_css:
# fireworks:
# fontawesome:
# gitalk:
# gitalk_css:
# giscus:
# instantpage:
# instantsearch:
# katex:
# katex_copytex:
# lazyload:
# local_search:
# main:
# main_css:
# mathjax:
# medium_zoom:
# mermaid:
# meting_js:
# pangu:
# prismjs_autoloader:
# prismjs_js:
# prismjs_lineNumber_js:
# pjax:
# sharejs:
# sharejs_css:
# snackbar:
# snackbar_css:
# translate:
# twikoo:
# typed:
# utils:
# valine:
# waline_css:
# waline_js:
參數解釋
internal_provider主題內部文件
可選 local/jsdelivr/unpkg/cdnjs/custom
lcoal 為本地加載,custom 為自定義格式,需配置 custom_format
注意: 如果使用的是 Dev 版,只能設置為 local
third_party_provider第三方文件
可選 local/jsdelivr/unpkg/cdnjs/custom
lcoal 為本地加載,custom 為自定義格式,需配置 custom_format
注意: 如果你選擇 local 需要安裝 hexo-butterfly-extjs插件
versiontrue/false 為 cdn 加上指定版本號
custom_format自定義格式
option你可以在這裏更換部分文件,會覆蓋原有的配置

version

如需修改版本號,可修改主題目錄的 'plugins.yml' 中對應插件的 version

請確保你修改的版本號,你所使用的 cdn 有收錄

custom_format

提供以下參數

參數解釋
namenpm 上的包名
filenpm 上的文件路徑
min_filenpm 上的文件路徑(壓縮過的文件)
cdnjs_namecdnjs 上的包名
cdnjs_filecdnjs 上的文件路徑
min_cdnjs_filecdnjs 上的文件路徑(壓縮過的文件)
version插件版本號

部分可用的第三方 CDN 列表

請確保你選擇的 CDN 有收錄主題使用的第三方插件

提供商格式備註
Staticfile(七牛雲)https://cdn.staticfile.org/${cdnjs_name}/${version}/${min_cdnjs_file}同步 cdnjs
BootCDNhttps://cdn.bootcdn.net/ajax/libs/${cdnjs_name}/${version}/${min_cdnjs_file}同步 cdnjs
Elemecdn最新版本: https://npm.elemecdn.com/${name}@latest/${file}
指定版本: https://npm.elemecdn.com/${name}@${version}/${file}
同步 npm
⚔️ Butterfly-文檔-四-標簽外掛