-
Notifications
You must be signed in to change notification settings - Fork 0
/
hugo.toml
83 lines (72 loc) · 1.91 KB
/
hugo.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
baseURL = "https://ssalandary.github.io"
languageCode = "en-us"
title = "Salma's Site"
theme = "soho"
summarylength = 10
paginate = 10
enableEmoji = true
[params]
mainSections = ["posts"]
profilePicture = "https://avatars.githubusercontent.com/u/86086118?v=4"
author = "Salma Alandary"
description = "CS @ UCLA"
[[params.socialIcons]]
icon = "fa-linkedin"
title = "Linkedin"
url = "https://www.linkedin.com/in/salma-alandary/"
[[params.socialIcons]]
icon = "fa-github"
title = "GitHub"
url = "https://github.com/ssalandary"
[[params.socialIcons]]
icon = "fa-twitter"
title = "Twitter"
url = "https://twitter.com/DalSalma"
[[params.socialIcons]]
icon = "fa-envelope"
title = "Mail"
url = "mailto:[email protected]"
[taxonomies]
category = "categories"
series = "series"
tag = "tags"
[menu]
[[menu.main]]
name = "About me"
identifier = "about"
weight = 100
url = "/about-me/"
[[menu.main]]
name = "Blog"
identifier = "posts"
weight = 200
url = "/posts/"
[markup]
defaultMarkdownHandler = "goldmark"
[markup.goldmark]
[markup.goldmark.extensions]
definitionList = true
footnote = true
linkify = true
strikethrough = true
table = true
taskList = true
typographer = true
[markup.goldmark.parser]
attribute = true
autoHeadingID = true
autoHeadingIDType = "github"
[markup.goldmark.renderer]
hardWraps = false
unsafe = true
xhtml = false
[markup.highlight]
codeFences = true
guessSyntax = false
hl_Lines = ""
lineNoStart = 1
lineNos = true
lineNumbersInTable = true
noClasses = true
style = "github"
tabWidth = 4