-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
81 lines (66 loc) · 2.11 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
81
baseURL = "https://michael-freling.github.io"
languageCode = "en-us"
title = "Notes for self made anime"
enableRobotsTXT = true
# this example loads the theme as hugo module
# comment out line below, and uncomment the line after it if you prefer to load the theme normally
theme = ["github.com/onweru/compose"] # edit this if you'ld rather use a fork of this repo
# theme = "compose"
enableGitInfo = true
disableKinds = ["taxonomy", "taxonomyTerm"]
[permalinks]
posts = "/:sections/:year/:month/:day/:slug/"
# menu items
[[menu.main]]
name = "Top"
weight = 2
url = "/"
# menu items
# [[menu.main]]
# name = "Docs"
# weight = 2
# url = "/docs/"
[markup]
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
[markup.goldmark.extensions]
typographer = false
[markup.highlight]
codeFences = true
guessSyntax = false
hl_Lines = ""
lineNoStart = 1
lineNos = true
lineNumbersInTable = false
noClasses = false
style = "monokai"
tabWidth = 2
[markup.tableOfContents]
endLevel = 1
startLevel = 1
# Everything below this are Site Params
[params]
time_format_blog = "Monday, January 02, 2006"
time_format_default = "January 2, 2006"
enableDarkMode = true # set to false to disable darkmode by default # user will still have the option to use dark mode
# sets the maximum number of lines per codeblock. The codeblock will however be scrollable and expandable
codeMaxLines = 7
# disable showing line numbers by default. Switch to `true` if you'd rather have them on.
codeLineNumbers = false
# # Site logo
[params.logo]
lightMode = "/icons/moon.svg"
darkMode = "/icons/sun.svg"
# # optional
# # attribution. Feel free to delete this
# [params.author]
# name = "Weru"
# url = "https://neuralvibes.com/author/"
[params.source]
iconLight = "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png"
iconDark = "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png"
url = "https://github.com/michael-freling/michael-freling.github.io"
# Enable search
[outputs]
home = ["HTML", "RSS","JSON"]