-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
124 lines (107 loc) · 3.45 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
title = "PrayinForRain.dev"
baseURL = "https://prayinforrain.github.io/"
# This is what goes in <html lang="">
languageCode = 'ko'
theme = "hugo-blog-awesome"
# This defines how dates are formatted
defaultContentLanguage = "ko"
googleAnalytics = 'G-63GYNX3VF5' # G-MEASUREMENT_ID
enableRobotsTXT = true
# Enable emojis globally
enableEmoji = true
# set markup.highlight.noClasses=false to enable code highlight
[markup]
[markup.highlight]
noClasses = false
anchorLineNos = true
codeFences = true
guessSyntax = true
hl_Lines = ''
hl_inline = false
lineAnchors = ''
lineNoStart = 1
lineNos = false
lineNumbersInTable = true
noHl = false
style = 'monokai'
tabWidth = 4
[markup.goldmark.renderer]
unsafe = true
[markup.tableOfContents]
startLevel = 2
[menu]
[[menu.main]]
# The page reference (pageRef) is useful for menu highlighting
# When pageRef is set, setting `url` is optional; it will be used as a fallback if the page is not found.
pageRef="/"
name = 'Home'
url = '/'
weight = 10
[[menu.main]]
pageRef="posts"
name = 'Posts'
url = '/posts/'
weight = 20
[[menu.main]]
pageRef="tags"
name = 'Tags'
url = '/tags/'
weight = 30
[[menu.main]]
pageRef="about"
name = 'About'
url = '/about/'
weight = 40
[params]
sitename = "PrayinforRain.dev"
defaultColor = "auto" # set default color mode: dark or light
description = "Dev blog of PrayinForRain, a KR frontend engineer"
mainSections = ['posts']
toc = true # set to false to disable table of contents 'globally'
goToTop = true # set to false to disable 'go to top' button
ogimage = "avatar.png"
additionalScripts = ["js/postAnchor.js"]
[params.author]
avatar = "avatar.png" # put the file in assets folder; also ensure that image has same height and width
# Note: image is not rendered if the resource(avatar image) is not found. No error is displayed.
intro = "PrayinforRain"
name = "PrayinforRain"
description = "Frontend Developer"
[params.webmanifest]
name = "PrayinforRain" # will use "params.sitename" or "title" by default
short_name = "PrayinforRain" # same as name
start_url = "/" # will use homepage url by default
theme_color = "#434648" # default is "#434648" (base color of text). Also will override html `<meta name="theme-color" />`
background_color = "#fff" # by default depend on "params.defaultColor" for "light" or "auto" will be set to "#fff" for dark will be "#131418" (color of dark mode background)
display = "standalone"
[[params.socialIcons]]
name = "github"
url = "https://github.com/prayinforrain"
[[params.socialIcons]]
name = "email"
url = "mailto:[email protected]"
[[params.socialIcons]]
name = "Rss"
url = "index.xml"
[params.analytics] # for Analytics
host = "prayinforrain.github.io"
googleId = "G-63GYNX3VF5"
naverId = "1940c9395811670"
[params.giscus] # giscus is a comment system based on GitHub Discussions. see https://giscus.app
enable = true
repo = "prayinforrain/prayinforrain.github.io"
repoId = "R_kgDOItUJmA"
category = "Announcements"
categoryId = "DIC_kwDOItUJmM4CTXa0"
mapping = "pathname" # comment value is the default value
strict = 0
reactionsEnabled = 1
emitMetadata = 0
inputPosition = "top"
theme = ""
lang = "en"
loading = "lazy"
[tableOfContents]
startLevel = 1 # ToC starts from H2
endLevel = 4 # ToC ends at H4
ordered = false # generates <ul> instead of <ol>