-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
executable file
·171 lines (143 loc) · 5.17 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
baseURL = "https://donearm.github.io/Scientia/"
languageCode = "en-gb"
DefaultContentLanguage = "en"
title = "Scientia - Gianluca Fiore Knowledge Wiki"
theme = "hugo-theme-relearn-5.6.5"
hasCJKLanguage = true
metaDataFormat = "yaml"
publishDir = "docs"
defaultContentLanguage = "en"
defaultContentLanguageInSubdir= false
enableMissingTranslationPlaceholders = false
pygmentsStyle = "dracula"
pygmentsUseClasses = true
[params]
author = "Gianluca Fiore"
description = "My personal knowledge wiki. Mostly I.T. but with a few more recent topics"
github_repository = "/~https://github.com/Donearm/Scientia/"
version = ""
showVisitedLinks = false
disableSearch = false
disableSearchHiddenPages = true
disableSeoHiddenPages = true
disableTagHiddenPages = true
disableLandingPageButton = true
disableBreadcrumb = false
# If set to false, load the Mermaid module on every page regardless
# if a Mermaid shortcode or Mermaid codefence is present
disableMermaid = true
# Specifies the remote location of the Mermaid js
customMermaidURL = "https://unpkg.com/mermaid/dist/mermaid.min.js"
# Order sections in menu by "weight" or "title". Default to "weight";
# this can be overridden in the pages frontmatter
ordersectionsby = "weight"
# Change default color scheme with a variant one. Eg. can be "red",
# "blue", "green" or an array like [ "blue", "green" ].
themeVariant = "fpc"
# Change the title separator. Default to "::".
titleSeparator = "-"
# If set to true, the menu in the sidebar will be displayed in a collapsible tree view.
collapsibleMenu = true
# Documentation repository section
# documentation repository (set edit link to documentation repository)
github_doc_repository = "https://donearm.github.io/Scientia/"
# Analytic section
google_analytics_id = "" # Your Google Analytics tracking id
tag_manager_container_id = "" # Your Google Tag Manager container id
google_site_verification = "" # Your Google Site Verification for Search Console
# Open Graph and Twitter Cards settings section
# Open Graph settings for each page are set on the front matter.
# See https://gohugo.io/templates/internal/#open-graph
# See https://gohugo.io/templates/internal/#twitter-cards
title = "Scientia - Gianluca Fiore Knowledge Wiki"
images = ["images/og-image.png"] # Open graph images are placed in `static/images`
# This controls whether submenus will be expanded (true), or collapsed (false) in the
# menu; if no setting is given, the first menu level is set to false, all others to true;
# this can be overridden in the pages frontmatter
alwaysopen = false
# Theme settings section
# Theme color
# See color value reference https://developer.mozilla.org/en-US/docs/Web/CSS/color
custom_font_color = "#f2efea"
custom_background_color = "#38405f"
# Documentation Menu section
# Menu style settings
menu_style = "slide-menu" # "open-menu" or "slide-menu"
# Date format
dateformat = "" # default "2 Jan 2006"
# See the format reference https://gohugo.io/functions/format/#hugo-date-and-time-templating-reference
# path name excluded from documentation menu
menu_exclusion = [
"archives",
"archive",
"blog",
"entry",
"post",
"posts",
]
# Algolia site search section
# See https://www.algolia.com/doc/
algolia_search_enable = true
algolia_indexName = "Scientia - Gianluca Fiore Knowledge Wiki"
algolia_appId = "DRRGB5NMNG"
algolia_apiKey = "b66dcbe0616bd937b0436433b526ee27"
# Global menu section
# See https://gohugo.io/content-management/menus/
[menu]
#[[menu.shortcuts]]
# name = "<i class='fas fa-tags'></i> Tags"
# url = "/tags"
# weight = 10
[[menu.shortcuts]]
name = "<i class='fab fa-fw fa-github'></i> GitHub repo"
identifier = "ds"
url = "/~https://github.com/Donearm/Scientia/"
weight = 20
[[menu.shortcuts]]
name = "<i class='fas fa-fw fa-bookmark'></i> Personal Site"
identifier = "gianlucafioreit"
url = "https://www.gianlucafiore.it"
weight = 30
[[menu.shortcuts]]
name = "<i class='fas fa-solid fa-pen-nib'></i> Fountain Pen Creator"
url = "https://www.fountainpencreator.com"
weight = 40
# 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
[markup.highlight]
codeFences = true
# choose a color theme or create your own. A list of supported
# themes for syntax highlighting can be found at https://xyproto.github.io/splash/docs/all.html
style = "fruity"
[outputs]
home = ["HTML", "RSS", "SEARCH", "SEARCHPAGE"]
# Algolia Search configure section
#[outputFormats.Algolia]
# baseName = "algolia"
# mediaType = "application/json"
# isPlainText = true
# notAlternative = true
#[params.algolia]
# vars = [
# "title",
# "summary",
# "content",
# "date",
# "publishdate",
# "description",
# "permalink",
# "keywords",
# "lastmod",
# ]
# params = [
# "tags",
# "categories",
# ]