-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
127 lines (102 loc) · 3.38 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
baseURL = "https://sharpen.rocks/"
paginate = 100
defaultContentLanguage = "en"
enableEmoji = true
# Set the unicode character used for the "return" link in page footnotes.
footnotereturnlinkcontents = "↩"
languageCode = "en-us"
metaDataFormat = "yaml"
title = "Sharpen"
theme = "gohugoioTheme"
pluralizeListTitles = false
# We do redirects via Netlify's _redirects file, generated by Hugo (see "outputs" below).
# But we also want to have Hugo's aliases for the local development.
disableAliases = false
# Highlighting config (Pygments)
## It is (currently) not in use, but you can do ```go in a content file if you want to.
pygmentsCodeFences = true
pygmentsOptions = ""
## Use the Chroma stylesheet
pygmentsUseClasses = true
pygmentsUseClassic = false
## See https://help.farbox.com/pygments.html
pygmentsStyle = "friendly"
[outputs]
home = [ "HTML", "RSS", "REDIR", "HEADERS" ]
section = [ "HTML", "RSS"]
[mediaTypes]
[mediaTypes."text/netlify"]
suffixes = [""]
delimiter = ""
[outputFormats]
[outputFormats.REDIR]
mediatype = "text/netlify"
baseName = "_redirects"
isPlainText = true
notAlternative = true
[outputFormats.HEADERS]
mediatype = "text/netlify"
baseName = "_headers"
isPlainText = true
notAlternative = true
[related]
threshold = 80
includeNewer = true
toLower = false
[[related.indices]]
name = "keywords"
weight = 100
[[related.indices]]
name = "date"
weight = 10
pattern = "2006"
[social]
twitter = "sharpenrocks"
# Custom Params
[params]
description = "A C# Code Sharpener"
## Used for views in rendered HTML (i.e., rather than using the .Hugo variable)
release = "0.2.0"
## Setting this to true will add a "noindex" to *EVERY* page on the site
removefromexternalsearch = false
## GitHub repo for site footer (include trailing slash)
ghrepo = "https://github.com/sharpenrocks/sharpen.rocks/"
## GitHub Repo for filing a new issue
github_repo = "https://github.com/sharpenrocks/Sharpen/issues/new"
### Edit content repo (set to automatically enter "edit" mode; this is good for "improve this page" links)
ghdocsrepo = "https://github.com/sharpenrocks/sharpen.rocks/tree/master/docs"
# First one is picked as the Twitter card image if not set on page.
images = ["images/sharpen-logo.png"]
flex_box_interior_classes = "flex-auto w-100 w-40-l mr3 mb3 bg-white ba b--moon-gray nested-copy-line-height"
#sidebar_direction = "sidebar_left"
# Markdown
## Configuration for BlackFriday markdown parser: https://github.com/russross/blackfriday
[blackfriday]
plainIDAnchors = true
hrefTargetBlank = true
angledQuotes = false
latexDashes = true
# As of v0.20, all content files include a default "categories" value that's the same as the section. This was a cheap future-proofing method and should/could be changed accordingly.
[taxonomies]
category = "categories"
# Global menu items
[[menu.global]]
name = "Why Sharpen?"
weight = 5
identifier = "why-sharpen"
post = "external"
url = "https://github.com/sharpenrocks/Sharpen/wiki/Why-Sharpen"
## Anything with a weight > 100 gets an external icon
[[menu.global]]
name = "Download"
weight = 150
icon = true
identifier = "download"
post = "external"
url = "https://marketplace.visualstudio.com/items?itemName=ironcev.sharpen"
[[menu.global]]
name = "GitHub"
weight = 200
identifier = "github"
post = "external"
url = "https://github.com/sharpenrocks/Sharpen"