-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
42 lines (36 loc) · 1.27 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
baseURL = "https://pycon-redux.com"
defaultContentLanguage = "en"
disablePathToLower = true
# Getting well formatted code blocks
enableGitInfo = true
pygmentsCodeFences = true
# Geekdoc required configuration
pygmentsUseClasses = true
theme = "hugo-geekdoc"
title = "PyCon Redux"
[languages.en]
contentDir = "content/en"
languageName = "English"
[markup.goldmark.renderer]
# Needed for mermaid shortcode
unsafe = true
[markup.tableOfContents]
endLevel = 9
startLevel = 1
[params]
# Enable 'Edit page' links. Requires 'geekdocRepo' param and the path must point to
# the parent directory of the 'content' folder.
geekdocEditPath = "edit/main"
# (Optional, default static/brand.svg) Set the path to a logo for the Geekdoc
# relative to your 'static/' folder.
geekdocLogo = "Python.svg"
# (Optional, default none) Set source repository location. Used for "Edit page" links.
# You can also specify this parameter per page in front matter.
geekdocRepo = "https://github.com/jamesbraza/pycon-redux"
# (Optional, default none) Adds a "Content licensed under <license>" line to the footer.
# Could be used if you want to define a default license for your content.
[params.geekdocContentLicense]
link = "https://creativecommons.org/licenses/by-sa/4.0/"
name = "CC BY-SA 4.0"
[taxonomies]
tag = "tags"