-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhugo.toml
More file actions
124 lines (99 loc) · 2.51 KB
/
hugo.toml
File metadata and controls
124 lines (99 loc) · 2.51 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
baseURL = "https://notes.muthu.co/"
languageCode = "en-us"
defaultContentLanguage = "en"
title = "Engineering Notes"
theme = "ink-free"
disableAliases = true
[pagination]
pagerSize = 10
[permalinks]
posts = "/:year/:month/:title"
ai-agents = "/:year/:month/:title"
engineering-manager = "/:year/:month/:title"
[params]
subtitle = "Thoughts and Ideas on AI by Muthukrishnan"
# Optional 64x64 avatar image.
avatar = "/avatar.jpeg"
favicon = "/avatar.jpeg"
featherIconsCDN = false
mermaidCDN = "https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.esm.min.mjs"
mainSections = ["posts", "ai-agents", "engineering-manager"]
# Site color - dark/light/auto
mode = "light"
# Enable a table of contents:
# Either "static"/true, "floating", "both", or "none" (default: static)
# The floating TOC dissapears on mobile and adds 200px vertical space
toc = "none"
# Whether to truncate everything but H1/H2 headings if the last element in a TOC isn't visible. Enabled by default
enableTocTrunate = true
# Max tags
maxTags = 7
# Define words per minute to approximate reading time
wpm = 250
# For statistics, we can compare the total word count against a book of your choice
# statisticsEnabled = true
# referenceBookWords = 95000.0
# referenceBook = "Artificial Intelligence: A Modern Approach"
# referenceAuthor = "Stuart Russell & Peter Norvig"
# Nav.
[[menu.main]]
name = "Home"
url = "/"
weight = 1
[[menu.main]]
name = "All posts"
url = "/posts"
weight = 2
[[menu.main]]
name = "AI Agents"
url = "/ai-agents"
weight = 3
[[menu.main]]
name = "Engineering Manager"
url = "/engineering-manager"
weight = 4
[[menu.main]]
name = "About"
url = "/about"
weight = 5
[[menu.main]]
name = "Resume"
url = "/resume"
weight = 6
[[menu.main]]
name = "Tags & Stats"
url = "/tags"
weight = 7
[[params.social]]
name = "Github"
icon = "github"
url = "https://github.com/muthuspark/"
[[params.social]]
name = "LinkedIn"
icon = "linkedin"
url = "https://linkedin.com/in/krimuthu/"
[taxonomies]
tag = "tags"
[markup]
[markup.highlight]
codeFences = true
guessSyntax = false
hl_Lines = ""
lineNoStart = 1
lineNos = false
lineNumbersInTable = false
noClasses = true
style = "github"
tabWidth = 4
[markup.goldmark.extensions.passthrough]
enable = true
[markup.goldmark.extensions.passthrough.delimiters]
block = [['$$', '$$']]
inline = [['$', '$']]
[markup.tableOfContents]
endLevel = 3
ordered = true
startLevel = 2
[caches]
[caches.images]
dir = ':cacheDir/images'