-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
95 lines (79 loc) · 1.69 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
82
83
84
85
86
87
88
89
90
91
92
93
baseurl = "https://deblina.net/"
title = "deblina"
languageCode = "en-us"
# Theme to use
theme = "simple-hugo-theme"
# Pagination
paginate = 10
paginatePath = "page"
# Emojis
enableEmoji = true
# Copyright
copyright = " 2024 — Deblina Mukherjee — No rights reserved."
# Highlighting
pygmentsCodefences = true
pygmentsCodeFencesGuessSyntax = true
pygmentsoptions = "linenos=table"
pygmentsStyle = "vs"
enableRobotsTXT = true
# Taxonomies
[taxonomies]
tag = "tags"
category = "categories"
# Menu
[menu]
# Header
[[menu.main]]
url = "/news/"
name = "news"
weight = 1
[[menu.main]]
url = "/work/"
name = "work"
weight = 2
[[menu.main]]
url = "/posts/"
name = "posts"
weight = 3
# Footer
[[menu.footer]]
url = "https://www.are.na/deblina-mukherjee/"
name = "ar"
weight = 1
[[menu.footer]]
url = "https://www.admonymous.co/deblina"
name = "ad"
weight = 2
[[menu.footer]]
url = "mailto:[email protected]"
name = "em"
weight = 3
[[menu.footer]]
url = "/posts/index.xml"
name = "fd"
weight = 4
[[menu.footer]]
url = "https://github.com/deblnia"
name = "gh"
weight = 5
[[menu.footer]]
url = "https://twitter.com/deblnia"
name = "tw"
weight = 6
# Links format
[permalinks]
posts = "/posts/:year/:month/:title/"
[params]
# Date format (default: Jan 2, 2006)
# datefmt = "Jan 2, 2006"
#Markdown
[markup]
defaultMarkdownHandler = "goldmark"
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true # Enable user to embed HTML snippets in Markdown content.
[markup.highlight]
codeFences = true
[markup.tableOfContents]
startLevel = 2
endLevel = 3