-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.toml
More file actions
115 lines (99 loc) · 3.23 KB
/
config.toml
File metadata and controls
115 lines (99 loc) · 3.23 KB
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
baseURL = 'https://cppclub.uk/'
languageCode = 'en-gb'
title = 'C++ Club'
theme = "cactus"
copyright = "Gleb Dolgich"
# summaryLength = 2
# Main menu which appears below site header.
[[menu.main]]
name = "Home"
url = "/"
weight = 1
[[menu.main]]
name = "Meetings"
url = "/meetings"
weight = 2
[[menu.main]]
name = "Tags"
url = "/tags"
weight = 3
[[menu.main]]
name = "About"
url = "/about"
weight = 4
[markup]
[markup.tableOfContents]
endLevel = 4
ordered = false
startLevel = 2
[markup.highlight]
codeFences = true
guessSyntax = false
hl_Lines = ""
lineNoStart = 1
lineNos = true
lineNumbersInTable = false
noClasses = true
style = "manni"
tabWidth = 4
[params]
logo = "/cppclub_logo_2022.png"
colortheme = "white" # dark, light, white, or classic
rss = true # generate rss feed. default value is false
#googleAnalyticsAsync = true # use asynchronous tracking. Synchronous tracking by default
googleAnalytics = ""
showAllPostsArchive = false # default
# Home page settings
description = "C++ Club is a semi-regular online meeting of C++ enthusiasts to discuss the latest news, events and anything else related to the C++ programming language. This is where I post meeting notes. For videos, visit my [YouTube channel](https://www.youtube.com/@cppclubuk). There is also a [podcast](https://redcircle.com/shows/cppclub)."
mainSection = "meetings" # your main section
mainSectionTitle = "Meetings"
showAllPostsOnHomePage = false # default
postsOnHomePage = 5 # this option will be ignored if showAllPostsOnHomePage is set to true
tagsOverview = true # show tags overview by default.
tocInline = false
showProjectsList = false # show projects list by default (if projects data file exists).
projectsUrl = "https://github.com/glebd" # title link for projects list
# https://gohugo.io/functions/format/#hugo-date-and-time-templating-reference
dateFormat = "2006-01-02" # default
# Post page settings
show_updated = true # default
showReadTime = true # default
[params.comments]
enabled = false
engine = "disqus" # only disqus, utterances, and cactus_comments is supported
disqusShortname = "cppclub"
# the value of name should be an valid font awesome icon name (brands type)
# https://fontawesome.com/icons?d=gallery&s=brands
[[params.social]]
name = "github"
link = "https://github.com/glebd"
[[params.social]]
name = "mastodon"
link = "https://mastodon.social/@glebd"
[[params.social]]
name = "linkedin"
link = "https://www.linkedin.com/glebd"
[[params.social]]
name = "email"
link = "glebd70@gmail.com" # no need for "mailto:" in the head
[security]
[security.exec]
allow = ['^(dart-)?sass(-embedded)?$', '^go$', '^npx$', '^postcss$', 'rst2html.py', 'asciidoctor']
[markup.asciidocExt]
# gem install asciidoctor-html5s
backend = 'html5s'
doctype = 'book'
extensions = ['asciidoctor-html5s']
failureLevel = 'fatal'
noHeaderOrFooter = true
preserveTOC = false
safeMode = 'unsafe'
sectionNumbers = false
trace = false
verbose = false
workingFolderCurrent = false
[markup.asciidocExt.attributes]
"icons" = "font"
"source-highlighter" = "rouge"
"rouge-style" = "igor_pro"
"rouge-css" = "style"