-
Notifications
You must be signed in to change notification settings - Fork 436
/
hugo.toml
83 lines (76 loc) · 1.76 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
baseURL = "https://docs.chef.io/"
languageCode = "en-us"
title = "Chef Web Docs"
enableGitInfo = true
pluralizeListTitles = false
disableKinds = ["taxonomy", "term"]
configDir = "config"
# We do redirects using Netlify's _redirects file, generated by Hugo (see "outputs" below).
disableAliases = true
# Summary length
summaryLength = 20
[outputs]
home = [ "HTML", "RSS", "REDIR" ]
section = [ "HTML", "RSS" ]
[mediaTypes]
[mediaTypes."text/netlify"]
delimiter = ""
[outputFormats]
[outputFormats.REDIR]
mediatype = "text/netlify"
baseName = "_redirects"
isPlainText = true
notAlternative = true
[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
[caches]
[caches.assets]
dir = ':resourceDir/_gen'
maxAge = -1
[caches.getcsv]
dir = ':cacheDir/:project'
maxAge = -1
[caches.getjson]
dir = ':cacheDir/:project'
maxAge = "1h"
[caches.getresource]
dir = ':cacheDir/:project'
maxAge = "1h"
[caches.images]
dir = ':resourceDir/_gen'
maxAge = -1
[caches.modules]
dir = ':cacheDir/modules'
maxAge = -1