-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
75 lines (65 loc) · 2.26 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
baseURL = "https://igor84.github.io"
languageCode = 'en-us'
title = "Dr Iggy's Coding Adventures"
theme = "relearn"
# For search functionality
[outputs]
# add JSON to the home to support lunr search; This is a mandatory setting
# for the search functionality
# add PRINT to home, section and page to activate feature to print whole
# chapters
home = ["HTML", "RSS", "JSON"]
section = ["HTML", "RSS"]
page = ["HTML", "RSS"]
[params]
mainSections = ['blog']
themeVariant = [ "relearn-dark", "neon", "relearn-light" ]
showVisitedLinks = true
collapsibleMenu = true
disableBreadcrumb = false
disableNextPrev = false
disableLandingPageButton = true
titleSeparator = "::"
disableSeoHiddenPages = true
custom_css = ["css/custom.css"]
[markup]
[markup.highlight]
# if `guessSyntax = true`, there will be no unstyled code even if no language
# was given BUT mermaid code fences will not work anymore! So this is a mandatory
# setting for your site
guessSyntax = false
# here we use our own modified chroma syntax highlightning style
# which is imported in theme-relearn-light.css / theme-relearn-dark.css;
# if you want to use a predefined style instead:
# - remove the following `noClasses`
# - set the following `style` to a predefined style name
# - remove the `@import` of the self-defined chroma stylesheet from your CSS files
# (here eg.: theme-relearn-light.css / theme-relearn-dark.css)
noClasses = false
lineNos = true
# style = "tango"
[markup.goldmark.renderer]
# activated for this showcase to use HTML and JavaScript; decide on your own needs;
# if in doubt, remove this line
unsafe = true
[[menu.shortcuts]]
name = "<i class='fas fa-address-card'></i> About me"
url = "/more/about-me/"
weight = 10
[[menu.shortcuts]]
name = "<i class='fab fa-fw fa-github'></i> GitHub profile"
url = "https://github.com/igor84/"
weight = 11
[[menu.shortcuts]]
name = "<i class='fab fa-fw fa-twitter'></i> Twitter"
url = "https://twitter.com/igorst"
weight = 12
[[menu.shortcuts]]
name = "<i class='fab fa-fw fa-mastodon'></i> Mastodon"
identifier = "me"
url = "https://mastodon.gamedev.place/@driggy"
weight = 13
[[menu.shortcuts]]
name = "<i class='fas fa-fw fa-tags'></i> Tags"
url = "tags/"
weight = 20