-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
1632 lines (1258 loc) · 50 KB
/
config.toml
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
##########################################
# 站點配置
baseURL = "https://io-oi.me/"
title = "reuixiy"
languageCode = "zh-hant"
hasCJKLanguage = true
# 版權資訊(支援 Markdown)
copyright = "在保留本文作者及本文連結的前提下,非商業用途隨意轉載分享。"
# 主題選擇
theme = "meme"
# `hugo new` 新建文章自動開啟的文字編輯器
newContentEditor = ""
# i18n
defaultContentLanguage = "zh-hant"
defaultContentLanguageInSubdir = false
# 標題大小寫格式
# https://gohugo.io/getting-started/configuration/#configure-title-case
titleCaseStyle = "none"
# 是否複數化列表頁面的標題
pluralizeListTitles = false
# 摘要的字數限制
summaryLength = 42
# 是否開啟 GitHub 風格的 Emoji 書寫方式
enableEmoji = false
# 腳註的返回連結中的文字
footnoteReturnLinkContents = "↩"
# 是否啟用 Git 版本資訊
enableGitInfo = true
# 是否生成 robots.txt 檔案
enableRobotsTXT = false
# URL 相關
disablePathToLower = false
relativeURLs = false
uglyURLs = false
# URL 結構
[permalinks]
# categories = "/categories/:slug/"
tags = "/tags/:slug/"
# 類別
[taxonomies]
# category = "categories"
tag = "tags"
# 修改時間
[frontmatter]
lastmod = ["lastmod", ":git", ":fileModTime", ":default"]
[pagination]
disableAliases = false
# 每一分頁的文章數(僅對「文章摘要」首頁佈局有效)
pagerSize = 5
path = 'page'
# Markdown 渲染器
[markup]
defaultMarkdownHandler = "goldmark"
[markup.goldmark]
[markup.goldmark.extensions]
definitionList = true
footnote = true
linkify = true
strikethrough = true
table = true
taskList = true
typographer = false
[markup.goldmark.parser]
attribute = true
autoHeadingID = true
autoHeadingIDType = "github"
[markup.goldmark.renderer]
hardWraps = false
unsafe = true
xHTML = false
[markup.highlight]
codeFences = true
guessSyntax = false
lineNos = false
lineNumbersInTable = true
noClasses = false
[markup.tableOfContents]
startLevel = 2
endLevel = 6
ordered = true
# 壓縮 HTML
[minify.tdewolff.html]
keepWhitespace = false
# 相關文章
[related]
threshold = 80
includeNewer = true
toLower = true
# [[related.indices]]
# name = "categories"
# weight = 100
[[related.indices]]
name = "tags"
weight = 95
[[related.indices]]
name = "date"
weight = 10
pattern = "2006"
# Atom 檔案格式的媒體型別
[mediaTypes."application/atom+xml"]
suffixes = ["xml"]
# MemE 主題自定義的 Atom 模板
[outputFormats.SectionsAtom]
mediaType = "application/atom+xml"
baseName = "atom"
# MemE 主題自定義的 RSS 模板
[outputFormats.SectionsRSS]
mediaType = "application/rss+xml"
baseName = "rss"
# lunr.js 的搜尋索引
[outputFormats.SearchIndex]
mediaType = "application/json"
baseName = "search"
# Algolia 的搜尋索引
[outputFormats.Algolia]
mediaType = "application/json"
baseName = "algolia"
isPlainText = true
notAlternative = true
# Hugo 的輸出控制
[outputs]
page = ["HTML"]
# home = ["HTML", "SectionsAtom", "SectionsRSS", "SearchIndex", "Algolia"]
home = ["HTML", "SectionsAtom", "SectionsRSS"]
section = ["HTML"]
taxonomy = ["HTML"]
term = ["HTML"]
# RSS & Atom 文章數限制
[services.rss]
limit = 10
##########################################
# 選單配置
# MemE 主題支援以下四種菜單:
# 1. main 頂欄下方(居中佈局)或裡面(彈性
# 佈局)的選單欄
# 2. home 首頁的底部連結(適用於「詩意
# 人生」和「影片片段」佈局)
# 3. socials 社交欄(關於頁面的極簡頁尾)
# 4. links 連結欄(關於頁面的極簡頁尾)
# 選單內的配置說明如下:
# pageref/url 內鏈地址/外鏈地址
# name 文字(留空("")則無)
# weight 位置
# pre 內鏈(internal)或外鏈(external)
# post 圖示(留空("")則無)
# identifier 圖示的 Class 名
# (對於彈性佈局的頂欄有三個特殊
# 的值:`theme-switcher`、
# `lang-switcher`、`search`)
[menu]
## 選單欄
# [[menu.main]]
# pageref = "/"
# name = "首頁"
# weight = 1
# pre = "internal"
# post = "home"
# [[menu.main]]
# pageref = "/posts/"
# name = "文章"
# weight = 2
# pre = "internal"
# post = "archive"
# [[menu.main]]
# pageref = "/categories/"
# name = "分類"
# weight = 3
# pre = "internal"
# post = "th"
# [[menu.main]]
# pageref = "/tags/"
# name = "標籤"
# weight = 4
# pre = "internal"
# post = "tags"
# [[menu.main]]
# pageref = "/about/"
# name = "關於"
# weight = 5
# pre = "internal"
# post = "user-circle"
[[menu.main]]
weight = 6
identifier = "theme-switcher"
[[menu.main]]
weight = 7
identifier = "lang-switcher"
# [[menu.main]]
# weight = 8
# identifier = "search"
# post = "search"
[[menu.main]]
pageref = "/life/"
name = "生活"
weight = 1
pre = "internal"
post = "grav"
identifier = "life"
[[menu.main]]
pageref = "/tech/"
name = "技術"
weight = 2
pre = "internal"
post = "wpexplorer"
identifier = "tech"
[[menu.main]]
pageref = "/about/"
name = "述身"
weight = 3
pre = "internal"
post = "user-circle"
identifier = "about"
## 首頁的底部連結
# [[menu.home]]
# pageref = "/life/"
# weight = 1
# pre = "internal"
# post = "grav"
# identifier = "life"
# [[menu.home]]
# pageref = "/tech/"
# weight = 2
# pre = "internal"
# post = "wpexplorer"
# identifier = "tech"
# [[menu.home]]
# pageref = "/about/"
# weight = 3
# pre = "internal"
# post = "user-circle"
# identifier = "about"
## 社交欄
[[menu.socials]]
url = "https://github.com/reuixiy"
name = "GitHub"
weight = 1
pre = "external"
[[menu.socials]]
url = "https://t.me/yixiuer"
name = "Telegram"
weight = 2
pre = "external"
[[menu.socials]]
url = "https://reuixiy.notion.site/2f10796bae1a4bddb1276a51d3f2118d"
name = "Others"
weight = 3
pre = "external"
## 連結欄
[[menu.links]]
pageref = "/"
name = "Home"
weight = 1
pre = "internal"
[[menu.links]]
pageref = "/coldplay/"
name = "Coldplay"
weight = 2
pre = "internal"
[[menu.links]]
pageref = "/tags/"
name = "Tags"
weight = 3
pre = "internal"
##########################################
# 主題配置
[params]
######################################
# 頂欄
# 是否開啟
enableHeader = true
# 是否自動隱藏
enableHeaderAutoHide = false
# 說明:僅對彈性佈局的頂欄有效
# 是否在首頁顯示
displayHeaderInHome = true
# 說明:對彈性佈局的頂欄無效
# 背景
headerBackground = "alpha(var(--color-bg), 0.8) linear-gradient(90deg, #f795331a 0, #f370551a 15%, #ef4e7b1a 30%, #a166ab1a 44%, #5073b81a 58%, #1098ad1a 72%, #07b39b1a 86%, #6dba821a 100%)"
# 說明:https://developer.mozilla.org/zh-CN/docs/Web/CSS/background
# 頂欄佈局
headerLayout = "flex"
# 說明:居中佈局(center)或彈性佈局(flex)
# 在窄檢視下隱藏選單欄並顯示一個按鈕?
enableNavToggle = true
navHeight = "9em"
# 說明:選單欄展開時的高度
######################################
# 品牌欄(在頂欄內)
# 是否使用 SVG 圖片
siteBrandSVG = false
# 如果是,請將你的 SVG 放到 `SVG.toml` 文
# 件內,並配置以下項。單位:px。
siteBrandSVGWidth = 250
siteBrandSVGHeight = 100
siteBrandSVGFill = "#fff"
# 如果否,則會使用你的站點標題作為預設值,並
# 以文字的形式顯示,下方可配置字號和字色。字
# 體請到底部的字型部分配置。單位:em。
siteBrandFontSize = 2
siteBrandFontColor = "var(--color-contrast-high)"
######################################
# 選單欄
# 是否開啟
enableMenu = false
# 說明:對彈性佈局的頂欄無效
# 是否在首頁顯示
displayMenuInHome = false
# 說明:對彈性佈局的頂欄無效
# 是否按文章分割槽高亮當前選單項
activeInSection = false
# 說明:如果開啟,那麼當某一文章的分割槽名是某
# 一選單項中的 `url` 時,該文章頁面中
# 的該選單項也會被高亮
######################################
# 首頁佈局
# MemE 主題有以下四種首頁佈局:
# 1. poetry 詩意人生
# 2. footage 影片片段
# 3. posts 文章摘要
# 4. page 普通頁面
homeLayout = "poetry"
## 「詩意人生」
# 詩句,支援 Markdown
homePoetry = ["暗夜中", "渴望一束光的關懷", "在白天", "卻更渴望黑洞的吞噬", "因為好奇心,想看看黑暗中有甚麼"]
# 底部連結的內間距,單位:em
homeLinksPadding = 1
## 「影片片段」
homePoster = ""
homeVideoWebm = ""
homeVideoMp4 = ""
homeLogo = ""
homeLogoLink = ""
homeTitle = ""
homeMotto = ""
homeDescription = ""
homeKeywords = ""
homeLinksDelimiter = ""
## 「文章摘要」
enableHideInHomepage = false
# 說明:激活 `hideInHomepage` front matter
# 的支持(性能原因默認關閉)
######################################
# 站點資訊
# 站點的 LOGO
siteLogo = "/icons/apple-touch-icon.png"
# 說明:用於 JSON-LD、Open Graph
# 站點的描述
siteDescription = "這是一休兒之文術网誌!怎麽記住 reuixiy 呢?其實就是「一休兒」之拼音,不過方向是自右往左!"
# 說明:用於 HTML 的頭部元資料、JSON-LD、
# Open Graph、Atom、RSS
# 站點的建立時間
siteCreatedTime = "2017-05-27T15:13:14+08:00"
# 注意:請保持此格式,更改數字
# 站點的推特帳號
siteTwitter = "reuixiy"
# 說明:用於 Twitter Cards
######################################
# 分類方式
# MemE 主題支援以下兩種分類方式:
# 1. sections 分割槽
# 2. categories 部類
# 其中,分割槽是基於站點的 content 目錄下的
# 資料夾和子資料夾;部類是基於文章的 Front
# Matter。分類即樹狀分類,Hexo 是基於文章
# 的 Front Matter,Hugo 則是基於檔案系統
# 的結構。由於設計理念的不同,導致了 Hexo
# 與 Hugo 的這個差異,故在此設計這個選項,
# 以對從 Hexo 過來的使用者友好。但是請注意:
# Hugo 中無法完全實現基於 Front Matter
# 的樹狀分類,故如需保留樹狀分類,建議適應
# Hugo 的設計理念——分割槽。
categoryBy = "sections"
# 注意:如果你設定為 `sections`,請務必將
# 此配置檔案中的類別(taxonomies)中
# 的 `categories` 刪除,不然分類頁
# 面會失效。同時,你還需要自己新建一個
# `content/categories/_index.md`
# 檔案。
######################################
# 分類頁面
# 是否開啟樹狀佈局
enableTree = true
# 注意:如果你設定 categoryBy 為
# `sections`,則無法關閉樹狀佈局
# 是否顯示文章標題
displayPosts = true
# 是否顯示每一分類下的文章數
displayPostsCount = true
# 設定一個非負數來限制每一分類下展示的文章數
limitPostsLimit = -1
######################################
# 標籤頁面
# 是否開啟標籤雲
enableTagCloud = true
# 字號單位
fontUnit = "em"
# 最大字號
largestFontSize = 2.5
# 最小字號
smallestFontSize = 1
######################################
# 列表頁面
# 寬度
listWidth = 34
# 說明:如果留空(""),則用 42 作為預設值
# 單位:em
# 是否顯示列表標題
displayListTitle = true
# 日期的格式
listDateFormat = "2006-01-02"
# 注意:請遵循格式 https://gohugo.io/functions/format/
# 日期的位置
listDatePosition = "right"
# 說明:left(左邊)或 right(右邊)
# 是否按月份分隔列表
groupByMonth = false
# 是否開啟十二生肖
chineseZodiac = true
# 是否翻譯年份(僅對年份標題有效)
i18nYear = false
# 是否翻譯月份(僅對月份標題有效)
i18nMonth = false
######################################
# 類別列表頁面
# 說明:對於分類頁面,你可以設定 `enableTree`
# 為 false 以得到一個普通的類別列表頁
# 面;對於標籤頁面,你可以設定
# `enableTagCloud` 為 false 以得到
# 一個普通的類別列表頁面。
# 是否顯示每一類別項下的文章數
displayTaxonomyTermCount = true
# 設定一個非負數來限制每一類別項下展示的文章數
limitEntriesLimit = -1
######################################
# 文章分割槽範圍
# 說明:分割槽的名字即站點的 content 目錄下
# 的資料夾的名字。
mainSections = ["life", "tech"]
######################################
# Atom & RSS
# 是否包括全文內容
includeContent = true
# 說明:如果否,則只會包含文章的摘要。關於摘
# 要,Hugo 能按你設定的字數限制自動截
# 取,你也可以在文章中透過
# `<!--more-->`(沒有空格)手動控制,
# 或者在文章的 Front Matter 中透過
# `summary` 手動指定。其中,應用的優
# 先級順序:手動指定 > 手動控制 > 自
# 動擷取。還需要注意的是,在 MemE 主
# 題自定義的 Atom 和 RSS 的模板中,
# 有一個比手動指定更高的優先順序——
# Front Matter 中的 `description`。
######################################
# 深色模式
# 是否開啟
enableDarkMode = true
# 預設模式
defaultTheme = "light"
# 說明:light(淺色模式)或 dark(深色模式)
# 是否隱藏模式切換開關
hideThemeToggle = false
# 是否在首頁隱藏模式切換開關
hideThemeToggleInHome = false
# 說明:如果開啟了深色模式,即使你隱藏了開關,
# 你的讀者依然可能以深色模式閱讀你的博
# 客,如果該讀者的系統設定為深色模式的
# 話。類似,如果你開啟深色模式並將預設
# 模式修改為它,即使你隱藏開關,你的讀
# 者依然可能以淺色模式模式閱讀你的部落格。
# 除非,你開啟下方這個選項。
overrideSystemPreferences = false
######################################
# 網頁應用
# 說明:前往 https://realfavicongenerator.net/
# 生成相關圖示和檔案,下載後解壓,僅保留
# android-chrome-512x512.png、
# apple-touch-icon.png、
# mstile-150x150.png、
# safari-pinned-tab.svg、favicon.ico、
# site.webmanifest 這些檔案,刪除其餘。
# 然後將這些檔案移動到 ~/blog/static/icons/
# 目錄下,再將 favicon.ico、site.webmanifest
# 移動到 ~/blog/static/ 目錄下,
# 最後將 site.webmanifest 重新命名為
# manifest.json,並檢查和修改相關內容
# (圖示的路徑)。
themeColor = "#fff"
themeColorDark = "#16171d"
safariMaskColor = "#fff"
msApplicationTileColor = "#fff"
######################################
# 網頁頭部元資料、搜尋引擎最佳化(SEO)、社交網路發現
jsonLD = true
openGraph = true
twitterCards = true
# 注意:如果你設定 twitterCards 為 `true`,
# 請務必開啟 openGraph。否則,網頁的
# Twitter Cards 資訊將會不完整。
# 是否自動探測圖片
autoDetectImages = true
# 說明:建議開啟,否則,你必須在文章的 Front
# Matter 中手動指定 `images`,不然,
# 你在社交網路或 APP 上分享的連結將無
# 法顯示帶大圖的摘要檢視。
######################################
# Service Worker
# 說明:僅在生產環境(production)下渲染
enableServiceWorker = true
######################################
# KaTeX 公式支援(包括化學方程式)
# 是否開啟(全域性設定)
enableKaTeX = false
# 說明:文章的 Front Matter 中的 `katex`
# 的優先順序高於此處
######################################
# MathJax 公式支援(包括化學方程式)
# 是否開啟(全域性設定)
enableMathJax = false
# 說明:文章的 Front Matter 中的 `mathjax`
# 的優先順序高於此處
# 是否禁用 MathJax 的右鍵選單
disableMathJaxMenu = false
######################################
# Mermaid (https://github.com/mermaid-js/mermaid)
# 是否開啟(全域性設定)
enableMermaid = false
# 說明:文章的 Front Matter 中的 `mermaid`
# 的優先順序高於此處
mermaidTheme = 'default'
mermaidThemeDark = 'dark'
######################################
# 評論
# 說明:僅在生產環境(production)下渲染
# 是否開啟(全域性設定)
enableComments = false
# 說明:文章的 Front Matter 中的 `comments`
# 的優先順序高於此處
# 直接加載評論,不需要手動點擊按鈕加載
autoLoadComments = false
## Disqus
enableDisqus = false
disqusShortname = ""
## Valine
enableValine = false
valineAppId = ""
valineAppKey = ""
valinePlaceholder = "Just go go"
valinePath = ""
valineAvatar = "mm"
valineMeta = ["nick", "mail", "link"]
valinePageSize = 10
valineLang = "zh-cn"
valineVisitor = false
valineHighlight = true
valineAvatarForce = false
valineRecordIP = false
valineServerURLs = ""
valineEmojiCDN = ""
valineEmojiMaps = {}
valineEnableQQ = false
valineRequiredFields = []
# 說明:https://valine.js.org/
## Utterances
enableUtterances = false
utterancesRepo = ""
utterancesIssueTerm = "pathname"
utterancesTheme = "github-light"
utterancesThemeDark = "photon-dark"
utterancesLabel = ""
# 說明:https://utteranc.es/
## Gitalk
enableGitalk = false
gitalkClientID = "your_client_id"
gitalkClientSecret = "your_client_secret"
gitalkRepo = "your_repository"
gitalkOwner = "your_gitalk_owner"
gitalkAdmin = ["your_gitalk_admin"]
# 1. default (`location.href`)
# 2. pathname (`location.pathname`)
# 3. hash (hash_filepath)
# 4. custom:your_gitalk_id ("your_gitalk_id")
gitalkID = "pathname"
gitalkNumber = -1
gitalkLables = ["Gitalk"]
# 1. default (`document.title`)
# 2. custom:your_gitalk_title ("your_gitalk_title")
gitalkTitle = "default"
# 1. default (`location.href` + header.meta[description])
# 2. href (`location.href`)
# 3. custom:your_gitalk_body ("your_gitalk_body")
gitalkBody = "default"
# 1. default (`navigator.language || navigator.userLanguage`)
# 2. Support [en, zh-CN, zh-TW, es-ES, fr, ru, de, pl, ko, fa, ja]
gitalkLanguage = "zh-TW"
gitalkDistractionFreeMode = false
gitalkPerPage = 10
gitalkPagerDirection = "last"
gitalkCreateIssueManually = false
gitalkProxy = "https://cors-anywhere.azm.workers.dev/https://github.com/login/oauth/access_token"
gitalkStaggerDelayBy = 150
gitalkAppearAnimation = "accordionVertical"
gitalkEnterAnimation = "accordionVertical"
gitalkLeaveAnimation = "accordionVertical"
gitalkEnableHotKey = true
# 說明:https://github.com/gitalk/gitalk
## Giscus
enableGiscus = false
giscusRepo = "[ENTER repo/you/want HERE]"
giscusRepoId = "[ENTER REPO ID HERE]"
giscusCategory = "[ENTER CATEGORY NAME HERE]"
giscusCategoryId = "[ENTER CATEGORY ID HERE]"
giscusMapping = "pathname"
giscusStrict = false
giscusReactionsEnabled = true
giscusEmitMetaData = false
giscusInputPosition = "top"
giscusTheme = "light"
giscusThemeDark = "dark"
giscusLang = "zh-TW"
# 說明:https://giscus.app/zh-TW
# Remark42
enableRemark42 = false
remark42Host = ""
remark42SiteId = "remark"
remark42Url = ""
remark42Components = ["embed"]
remark42MaxShownComments = 15
remark42MaxLastComments = 15
remark42Theme = "light"
remark42PageTitle = ""
remark42Locale = "zh-tw"
remark42ShowEmailSubscription = true
remark42ShowRssSubscription = true
remark42SimpleView = false
remark42NoFooter = false
# 說明:https://remark42.com/docs/configuration/frontend/
######################################
# Google Analytics
# 說明:僅在生產環境(production)下渲染
enableGoogleAnalytics = false
# 跟蹤程式碼的型別
trackingCodeType = "gtag"
# 說明:gtag 或 analytics
trackingID = "UA-100434861-1"
######################################
# Google Site Verification
googleSiteVerification = ""
######################################
# Google AdSense
# 說明:僅在生產環境(production)下渲染
googleAdClient = ""
## 自動廣告
enableGoogleAutoAds = false
## 廣告單元
enableGoogleAdUnits = false
googleAdSlot = ""
googleAdSlotInArticle = ""
googleAdSlotAutoRelaxed = ""
######################################
# Yandex.Metrika
# https://metrika.yandex.ru/
# 說明:僅在生產環境(production)下渲染
yandexMetrikaId = ""
######################################
# 文章設定
# 超連結的顏色變化持續時間(單位:秒)
duration = 0.5
# 淺色模式的主色
primaryColorLight = "220, 90%, 56%"
# 深色模式的主色
primaryColorDark = "201, 65%, 62%"
# 注意:只支援 HSL 顏色值
# 文章的內容寬度
postWidth = 34
# 說明:如果留空(""),則用 42 作為預設值
# 單位:em
# 文章是否為原創(全域性設定)
original = true
# 說明:會影響文章的作者資訊和版權資訊
# 文章的 Front Matter 中的 `original`
# 的優先順序高於此處
######################################
# 文章描述
# 是否顯示
displayPostDescription = true
######################################
# 文章元資訊
# 是否開啟(全域性設定)
enablePostMeta = false
# 說明:文章的 Front Matter 中的 `meta`
# 的優先順序高於此處
# 是否在首頁開啟
enablePostMetaInHome = false
# 說明:僅對「文章摘要」和「普通頁面」
# 首頁佈局有效
# 日期格式
postMetaDateFormat = "2006.1.2"
# 注意:請遵循格式 https://gohugo.io/functions/format/
# 是否顯示釋出時間
displayPublishedDate = true
# 釋出時間的圖示
publishedDateIcon = "calendar-alt"
# 是否顯示修改時間
displayModifiedDate = true
# 修改時間的圖示
modifiedDateIcon = "calendar-check"
# 是否顯示過期時間
displayExpiredDate = true
# 過期時間的圖示
expiredDateIcon = "calendar-times"
# 是否顯示分類
displayCategory = true
# 分類的圖示
categoryIcon = "folder"
# 分類之間的分隔符
categoryDelimiter = "/"
# 是否顯示字數統計
displayWordCount = true
# 字數統計的圖示
wordCountIcon = "pencil-alt"
# 是否顯示閱讀時長
displayReadingTime = true
# 閱讀時長的圖示
readingTimeIcon = "clock"
# 是否顯示不蒜子頁面瀏覽量
displayBusuanziPagePV = false
# 不蒜子頁面瀏覽量的圖示
busuanziPagePVIcon = "eye"
# 說明:僅在生產環境(production)下渲染
# 首頁暫不支援
# https://busuanzi.ibruce.info/
######################################
# Markdown 相關
# 在新標籤頁開啟外鏈?
hrefTargetBlank = true
######################################
# 文章目錄
# 是否開啟(全域性設定)
enableTOC = false
# 說明:文章的 Front Matter 中的 `toc`
# 的優先順序高於此處
# 是否顯示目錄標題
displayTOCTitle = true
# 是否顯示數字(全域性設定)
displayTOCNum = true
# 說明:文章的 Front Matter 中的 `tocNum`
# 的優先順序高於此處
# 是否連結文章的分節標題到目錄
linkHeadingsToTOC = true
######################################
# 分節標題錨點
# 是否開啟(全域性設定)
enableHeadingsAnchor = true
# 說明:文章的 Front Matter 中的 `anchor`
# 的優先順序高於此處
# 分節標題的級別範圍
headingsOpt = "1-6"
# 說明:正則格式,預設 1-6,即 1|2|3|4|5|6,
# 即 h1 到 h6。
# 錨點符號
anchorSymbol = "#"
# 說明:錨點圖示的優先順序高於錨點符號
# 預設值:§
# 錨點圖示
anchorIcon = ""
# 說明:留空("")則回退到錨點符號
# 是否開啟錨點連結
enableAnchorLink = true
# 是否自動隱藏錨點
enableAnchorAutoHide = true
######################################
# 說明文字
# 是否開啟
enableCaption = true
# 說明文字的字首
captionPrefix = "※ "
######################################
# 圖片外鏈
# 說明:僅在生產環境(production)下渲染
#
# 只支援相對於網站根目錄的絕對連結
# 比如:/images/meme.jpg
# (~/blog/static/images/meme.jpg)
# 是否開啟
enableImageHost = false
# 圖片外鏈地址