-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathhugo.toml
More file actions
158 lines (130 loc) · 4.35 KB
/
hugo.toml
File metadata and controls
158 lines (130 loc) · 4.35 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
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
baseURL = "/"
title = "Lisp-Stat"
enableRobotsTXT = true
# Will give values to .Lastmod etc.
enableGitInfo = true
# Language settings
contentDir = "content/en"
defaultContentLanguage = "en"
defaultContentLanguageInSubdir = false
# Useful when translating.
enableMissingTranslationPlaceholders = true
disableKinds = ["taxonomy"]
# Configure how URLs look like per section.
[permalinks]
blog = "/:section/:year/:month/:day/:slug/"
# Image processing configuration.
[imaging]
resampleFilter = "CatmullRom"
quality = 75
anchor = "smart"
[services]
[services.googleAnalytics]
# Comment out the next line to disable GA tracking. Also disables the feature described in [params.ui.feedback].
id = "G-4JNEYSENWT"
# Language configuration
[languages]
[languages.en]
title = "Lisp-Stat"
languageName ="English"
[languages.en.params]
description = "Lisp-Stat Documentation"
time_format_blog = "Monday, 02 January 2006"
time_format_default = "02 January 2006"
[markup]
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
[markup.highlight]
# See a complete list of available styles at https://xyproto.github.io/splash/docs/all.html
style = "emacs"
# Uncomment if you want your chosen highlight style used for code blocks without a specified language
# guessSyntax = "true"
# Build configuration with dartsass transpiler
[build]
writeStats = true
# Force dartsass transpiler instead of deprecated libsass
[build.buildStats]
enable = true
[[build.cachebusters]]
source = "assets/.*\\.(js|ts|jsx|tsx)"
target = "style.css"
[[build.cachebusters]]
source = "(postcss|tailwind)\\.config\\.js"
target = "css"
[[build.cachebusters]]
source = "assets/.*\\.(.*)$"
target = "$1"
# Comment out if you don't want the "print entire section" link enabled.
[outputs]
section = ["HTML", "print"]
[params]
copyright = "Symbolics Pte Ltd"
privacy_policy = "/privacy"
assets_transpiler = "dartsass"
# Menu title if your navbar has a versions selector to access old versions of your site.
version_menu = "Releases"
# Flag used in the "version-banner" partial to decide whether to display a
# banner on every page indicating that this is an archived version of the docs.
archived_version = false
# The version number for the version of the docs represented in this doc set.
version = "1.0"
# A link to latest version of the docs.
url_latest_version = "https://lisp-stat.dev/"
# Repository configuration
github_repo = "https://github.com/Lisp-Stat/documentation"
github_branch = "master"
# Enable Algolia DocSearch
#algolia_docsearch = true
[params.search.algolia]
appId = "U1X7KWY6XS"
apiKey = "7ae6d97110bdd128cc4c21827165bdb4"
indexName = "lisp-stat"
# Enable Lunr.js offline search
offlineSearch = false
# Enable syntax highlighting and copy buttons on code blocks with Prism
prism_syntax_highlighting = true
# Sections to publish in the main RSS feed.
rss_sections = ["blog"]
# User interface configuration
[params.ui]
sidebar_menu_compact = true
breadcrumb_disable = false
sidebar_search_disable = true
navbar_logo = true
footer_about_disable = true
[params.ui.feedback]
enable = true
yes = 'Glad to hear it! Please <a href="https://github.com/Lisp-Stat/documentation/issues/new">tell us how we can improve</a>.'
no = 'Sorry to hear that. Please <a href="https://github.com/Lisp-Stat/documentation/issues/new">tell us how we can improve</a>.'
[params.ui.readingtime]
enable = false
[params.links]
[[params.links.user]]
name = "User mailing list"
url = "https://groups.google.com/g/lisp-stat/"
icon = "fa fa-envelope"
desc = "Discussion and help from your fellow users"
[[params.links.user]]
name = "Stack Overflow"
url = "https://stackoverflow.com/questions/tagged/xlispstat/"
icon = "fab fa-stack-overflow"
desc = "Practical questions and curated answers"
[[params.links.developer]]
name = "GitHub"
url = "https://github.com/Lisp-Stat/"
icon = "fab fa-github"
desc = "Development takes place here"
[[params.links.developer]]
name = "Developer discussion"
url = "https://github.com/Lisp-Stat/lisp-stat/discussions/"
icon = "fa fa-envelope"
desc = "Discuss development issues around the project"
[module]
proxy = "direct"
[[module.imports]]
path = "github.com/google/docsy"
disable = false
[[module.imports]]
path = "github.com/google/docsy/dependencies"
disable = false