-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhugo.toml
48 lines (43 loc) · 1.15 KB
/
hugo.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
baseURL = "https://mrmaxguns.github.io"
languageCode = "en-us"
title = "Maxim Rebguns"
copyright = "Copyright Maxim Rebguns 2024. All rights reserved unless otherwise indicated."
enableRobotsTXT = true
enableGitInfo = true
[menus]
[[menus.main]]
name = 'Home'
pageRef = '/'
weight = 1
[[menus.main]]
name = 'Blog'
pageRef = '/blog'
weight = 2
[[menus.main]]
name = 'Documents'
pageRef = '/documents'
weight = 3
[markup]
[markup.highlight]
style = 'tango'
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
[markup.goldmark.extensions]
strikethrough = false
[markup.goldmark.extensions.passthrough]
enable = true
[markup.goldmark.extensions.passthrough.delimiters]
block = [['\[', '\]'], ['$$', '$$']]
inline = [['\(', '\)']]
[markup.goldmark.extensions.extras]
[markup.goldmark.extensions.extras.superscript]
enable = true
[markup.goldmark.extensions.extras.subscript]
enable = true
[markup.goldmark.extensions.extras.delete]
enable = true
[params]
math = false # Set only on pages that require it
[taxonomies]
tag = 'tags'