-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
89 lines (74 loc) · 2.02 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
baseURL = "https://tunepolo.github.io/til/"
languageCode = "ja-jp"
DefaultContentLanguage = "ja"
title = "Today 'tunepolo' Leaned"
theme = "hugo-theme-techdoc"
hasCJKLanguage = "true"
enableGitInfo = "true"
[params]
github_repository = "https://github.com/tunepolo/til"
github_doc_repository = "https://github.com/tunepolo/til"
menu_style = "slide-menu"
# OGP setting
title = "Today 'tunepolo' Leaned"
images = ["images/love-to-learn.jpg"]
# Analytics
google_analytics_id = "UA-165624930-1"
google_site_verification = "iHlDL3Ls94pRZsoFCVlVzdh6ht2VNVa7txVK-0YcPjg"
# Theme color
# See color value reference https://developer.mozilla.org/en-US/docs/Web/CSS/color
custom_font_color = ""
custom_background_color = "#cc7db1"
# path name excluded from documentation menu
menu_exclusion = [
"search",
]
# Algolia site search section
# See https://www.algolia.com/doc/
algolia_search_enable = true
algolia_indexName = "til"
algolia_appId = "8SF8KJJWGW"
algolia_apiKey = "42e69eff6e94918d7cb871bcbe88cc1e" # Search-Only API Key
[menu]
[[menu.main]]
name = "Home"
url = "/"
weight = 1
[[menu.main]]
name = "Search"
url = "/search"
weight = 2
# Markup configure section
# See https://gohugo.io/getting-started/configuration-markup/
[markup]
defaultMarkdownHandler = "goldmark"
[markup.goldmark.renderer]
unsafe= true
[markup.tableOfContents]
startLevel = 2
endLevel = 4
ordered = false
[outputs]
home = ["HTML", "RSS", "Algolia"]
# Algolia Search configure section
[outputFormats.Algolia]
baseName = "algolia"
isPlainText = true
mediaType = "application/json"
notAlternative = true
[params.algolia]
vars = [
"title",
"summary",
"content",
"date",
"publishdate",
"description",
"permalink",
"keywords",
"lastmod",
]
params = [
"tags",
"categories",
]