-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.toml
72 lines (63 loc) · 1.37 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
baseURL = "https://bitsby.me/"
languageCode = "en-us"
title = "Bits By Me"
paginate = 10
ignoreErrors = ["error-remote-getjson"]
[params]
homeText = "tech cloud geo learning"
dateFormat = "January 2, 2006"
description = "The personal website and blog of Dylan Thomas"
[sitemap]
changefreq = "weekly"
priority = 0.5
filename = "sitemap.xml"
[outputs]
home = ["HTML", "RSS", "JSON"]
[menu]
[[menu.main]]
name = "Home"
pre = "home"
url = "/"
weight = 1
[[menu.main]]
name = "Blog"
pre = "edit"
url = "/blog/"
weight = 2
[[menu.main]]
name = "TIL"
pre = "award"
url = "/til/"
weight = 3
[[menu.main]]
name = "Tags"
pre = "tag"
url = "/tags/"
weight = 4
[[menu.main]]
name = "Series"
pre = "book"
url = "/series/"
weight = 5
[[menu.main]]
name = "About"
pre = "user"
url = "/about/"
weight = 6
[taxonomies]
tag = "tags"
series = "series"
[permalinks]
blog = "/:year/:month/:title"
til = "til/:year-:month-:day/"
[markup]
[markup.highlight]
codeFences = true
guessSyntax = false
lineNos = true
lineNumbersInTable = true
noClasses = true
style = "github"
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true