-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathconfig.toml
More file actions
74 lines (64 loc) · 2.15 KB
/
config.toml
File metadata and controls
74 lines (64 loc) · 2.15 KB
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
baseURL = "https://rh-cloud-experts.netlify.app/experts/"
publishDir = "public/experts"
languageCode = 'en-us'
title = 'Red Hat Cloud Experts Documentation'
theme = "rhds"
DefaultContentLanguage = "en"
disableAliases = true
# as the official Hugo documentation recommends, we turn this off for this
# showcase; this allows the published site to be served by both http and https
canonifyURLs = false
# required for official documentation served from subfolder
relativeURLs = false
enableGitInfo = true
# defaultContentLanguageInSubdir= false
# enableMissingTranslationPlaceholders = false
[outputs]
home = [ "HTML", "RSS", "REDIR" ]
[mediaTypes]
[mediaTypes."text/netlify"]
delimiter = ""
[outputFormats]
[outputFormats.REDIR]
mediatype = "text/netlify"
baseName = "_redirects"
isPlainText = true
notAlternative = true
# Site params
[params]
disableInlineCopyToClipBoard = true
editURL = 'https://github.com/rh-mobb/documentation/edit/main/content/'
# Home page: default max items per tag section when a section omits its own limit (featured + rh-tile fill; newest first for non-featured)
home_tag_section_limit = 12
# Home featured tiles: optional home_featured_paths on each content/tags/<slug>/_index.md (see home-tag-tiles partial)
# Label in the featured tile header strip (RHDS title bar card pattern)
home_featured_header_label = "Featured"
# Home jump links sidebar (vertical rh-jump-links): heading text + aria-labelledby target
home_jump_links_heading = "Browse by topic"
# Code highlight configuration
[markup.highlight]
codeFences = true
guessSyntax = true
hl_Lines = ""
lineNoStart = 1
lineNos = false
lineNumbersInTable = true
noClasses = false
style = "emacs"
tabWidth = 2
[markup]
[markup.goldmark]
[markup.goldmark.parser]
wrapStandAloneImageWithinParagraph = false
[markup.goldmark.renderer]
unsafe = true
# json and js disabled to allow for code blocks containing these languages
# otherwise hugo --gc --minify will fail
[minify]
disableHTML = false
disableCSS = false
disableJS = true
disableJSON = true
disableSVG = false
disableXML = false
minifyOutput = false