-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
80 lines (67 loc) · 1.17 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
79
80
baseURL = "https://www.nathanmyles.com"
title = "Nathan Myles"
languageCode = "en-us"
defaultContentLanguage = "en"
[permalinks]
posts = "/posts/:filename"
[params]
# Go Reference time: Mon Jan 2 15:04:05 MST 2006
dateFormat = "Jan 2, 2006"
[outputs]
home = ["HTML"]
section = ["HTML"]
taxonomy = ["HTML"]
taxonomyTerm = ["HTML"]
[markup]
[markup.goldmark]
[markup.goldmark.extensions]
definitionList = false
footnote = true
linkify = false
strikethrough = false
table = true
taskList = false
typographer = false
[markup.goldmark.renderer]
unsafe = true
[markup.goldmark.parser]
attribute = false
[markup.highlight]
codeFences = true
noClasses = false
tabWidth = 2
# lineNos = true
# lineNumbersInTable = false
[menu]
[[menu.main]]
url = "/"
name = "Welcome"
weight = 1
[[menu.main]]
url = "/posts/"
name = "Posts"
weight = 2
[[menu.main]]
url = "/resume/"
name = "Resume"
weight = 3
[[menu.main]]
url = "/contact/"
name = "Contact"
weight = 4
[[menu.foot]]
url = "/posts/"
name = "Posts"
weight = 1
[[menu.foot]]
url = "/resume/"
name = "Resume"
weight = 2
[[menu.foot]]
url = "/contact/"
name = "Contact"
weight = 3
[languages]
[languages."en"]
weight = 1
languageName = "English"