-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhugo.toml
More file actions
112 lines (99 loc) · 2.08 KB
/
hugo.toml
File metadata and controls
112 lines (99 loc) · 2.08 KB
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
baseURL = 'https://whateverz.top/'
languageCode = 'zh-CN'
title = 'WhateverZ'
theme = "hugo-theme-stack"
hasCJKLanguage = true
defaultContentLanguage = "zh-cn"
enableRobotsTXT = true
enableEmoji = true
[Params]
favicon = "/favicon.svg"
[Params.DateFormat]
published = "2006-01-02"
lastUpdated = "2006-01-02 15:04 -07:00"
[Params.widgets]
page = [
{type = "toc"},
]
homepage = [
{type = "search"},
{type = "tag-cloud"},
{type = "categories"}
]
[Params.Sidebar]
avatar = { src = "/avatar.png" }
emoji = "😪"
subtitle = "Zlog"
[Params.Footer]
since = 2024
customText = "L'amor che move il sole e l'altre stelle."
[Params.Article]
math = true
[markup]
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
[markup.goldmark.extensions.passthrough]
enable = true
delimiters.block = [
["\\[", "\\]"],
["$$", "$$"]
]
delimiters.inline = [
["\\(", "\\)"],
["$", "$"]
]
[markup.tableOfContents]
startLevel = 2
endLevel = 4
[markup.highlight]
noClasses = false
[languages.zh-cn.params]
reading_speed = 300
[menu]
[[menu.social]]
identifier = "github"
name = "GitHub"
url = "https://github.com/whateverzpy"
[menu.social.params]
icon = "brand-github"
[[menu.social]]
identifier = "rss"
name = "RSS"
url = "/index.xml"
[menu.social.params]
icon = "rss"
[outputs]
home = ["html", "rss"]
section = ["html", "rss"]
[caches]
[caches.images]
dir = ':cacheDir/images'
[related]
includeNewer = true
threshold = 80
toLower = false
[[related.indices]]
applyFilter = false
cardinalityThreshold = 0
name = 'keywords'
pattern = ''
toLower = false
type = 'basic'
weight = 100
[[related.indices]]
applyFilter = false
cardinalityThreshold = 0
name = 'date'
pattern = ''
toLower = false
type = 'basic'
weight = 10
[[related.indices]]
applyFilter = false
cardinalityThreshold = 0
name = 'tags'
pattern = ''
toLower = false
type = 'basic'
weight = 80