-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
44 lines (35 loc) · 1.01 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
baseurl = "https://example.com/"
title = "zhi"
theme = "hugo-theme-console"
languageCode = "en-us"
# For math
[markup]
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true # This to allow embed videos
[markup.goldmark.extensions]
[markup.goldmark.extensions.passthrough]
enable = true # This for math
[markup.goldmark.extensions.passthrough.delimiters]
block = [['\[', '\]'], ['$$', '$$']]
inline = [['\(', '\)']]
[taxonomies]
category = "categories"
tag = "tags"
[params]
# Cutting off the page title to two chars for mobile (console-demo -> co)
titleCutting = true
# Set the animation style -- https://animate.style/
# To disable animations, please remove or comment animationStyle parameter
animateStyle = "animated zoomIn fast"
# Enable math
math = true
[[params.navlinks]]
name = "about/"
url = "about/"
[[params.navlinks]]
name = "posts/"
url = "posts/"
[[params.navlinks]]
name = "research/"
url = "research/"