-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
79 lines (60 loc) · 1.25 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
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
baseURL = "https://njkevlani.github.io/"
theme = "hst"
enableEmoji = true
enableGitInfo = true
[author]
name = "Nilesh Kevlani"
[params]
[params.postHistory]
enabled = true
siteGitRepo = "https://github.com/njkevlani/njkevlani.github.io"
contentDirRelativeToGitRepoRoot = "content"
[frontmatter]
lastmod = ["lastmod", ":git"]
[menu]
[[menu.main]]
name = "Home"
url = "/"
weight = 1
[[menu.main]]
name = "Blogs"
url = "/blogs/"
weight = 2
[[menu.main]]
name = "TILs"
url = "/tils/"
weight = 3
[[menu.main]]
name = "Tags"
url = "/tags/"
weight = 4
[[menu.main]]
name = "Links"
url = "/links/"
weight = 5
[taxonomies]
tag = "tags"
blogtag = "blogtags"
tiltag = "tiltags"
[permalinks]
blogtags = "/blogs/tags/:slug"
tiltags = "/tils/tags/:slug"
tils = "tils/:title"
blogs = "blogs/:title"
[outputs]
section = ["HTML"]
taxonomyTerm = ["HTML"]
taxonomy = ["HTML"]
[outputFormats]
[outputFormats.RSS]
mediatype = "application/rss"
baseName = "rss"
[markup]
[markup.goldmark]
[markup.goldmark.extensions]
typographer = false
[markup.goldmark.renderer]
unsafe = true
[markup.highlight]
lineNos = true
style = 'autumn'