-
Notifications
You must be signed in to change notification settings - Fork 436
/
hugo.toml
72 lines (65 loc) · 1.63 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
baseURL = "https://docs.chef.io/"
languageCode = "en-us"
title = "Chef Web Docs"
enableGitInfo = true
pluralizeListTitles = false
disableKinds = ["taxonomy", "term"]
configDir = "config"
disableAliases = true
# Summary length
summaryLength = 20
# We do redirects using Netlify's _redirects file, generated by Hugo.
# See the REDIR output and output format and the text/netlify mediatype.
[outputs]
home = [ "HTML", "RSS", "REDIR", "SITEMAP-MAIN" ]
section = [ "HTML", "RSS" ]
[mediaTypes]
[mediaTypes."text/netlify"]
delimiter = ""
[outputFormats]
[outputFormats.REDIR]
mediatype = "text/netlify"
baseName = "_redirects"
isPlainText = true
notAlternative = true
[outputFormats.SITEMAP-MAIN]
MediaType = "application/xml"
BaseName = "sitemap-main"
IsHTML = false
IsPlainText = true
Rel = "sitemap"
protocol = "xml://"
[markup]
[markup.goldmark]
[markup.goldmark.extensions]
definitionList = true
footnote = true
linkify = true
strikethrough = true
table = true
taskList = true
typographer = true
[markup.goldmark.parser]
autoHeadingID = true
autoHeadingIDType = "github"
[markup.goldmark.parser.attribute]
block = true
title = true
[markup.goldmark.renderer]
hardWraps = false
unsafe = true
xHTML = false
[markup.highlight]
codeFences = true
guessSyntax = false
hl_Lines = ""
lineNoStart = 1
lineNos = false
lineNumbersInTable = true
noClasses = false
style = "friendly"
tabWidth = 4
[markup.tableOfContents]
endLevel = 4
ordered = false
startLevel = 2