73 lines
1.4 KiB
TOML
73 lines
1.4 KiB
TOML
|
baseurl = "/"
|
||
|
canonifyURLs = false
|
||
|
disableAliases = true
|
||
|
disableHugoGeneratorInject = true
|
||
|
# disableKinds = ["taxonomy", "term"]
|
||
|
enableEmoji = true
|
||
|
enableGitInfo = false
|
||
|
enableRobotsTXT = true
|
||
|
languageCode = "en-US"
|
||
|
paginate = 10
|
||
|
rssLimit = 10
|
||
|
summarylength = 20 # 70 (default)
|
||
|
|
||
|
# Multilingual
|
||
|
defaultContentLanguage = "en"
|
||
|
disableLanguages = ["de", "nl"]
|
||
|
# defaultContentLanguageInSubdir = true
|
||
|
|
||
|
[outputs]
|
||
|
home = ["HTML", "RSS", "searchIndex"]
|
||
|
section = ["HTML", "RSS", "SITEMAP"]
|
||
|
|
||
|
[outputFormats.searchIndex]
|
||
|
mediaType = "application/json"
|
||
|
baseName = "search-index"
|
||
|
isPlainText = true
|
||
|
notAlternative = true
|
||
|
|
||
|
# Add output format for section sitemap.xml
|
||
|
[outputFormats.SITEMAP]
|
||
|
mediaType = "application/xml"
|
||
|
baseName = "sitemap"
|
||
|
isHTML = false
|
||
|
isPlainText = true
|
||
|
noUgly = true
|
||
|
rel = "sitemap"
|
||
|
|
||
|
[sitemap]
|
||
|
changefreq = "monthly"
|
||
|
filename = "sitemap.xml"
|
||
|
priority = 0.5
|
||
|
|
||
|
[caches]
|
||
|
[caches.getjson]
|
||
|
dir = ":cacheDir/:project"
|
||
|
maxAge = "10s"
|
||
|
|
||
|
[taxonomies]
|
||
|
contributor = "contributors"
|
||
|
category = "categories"
|
||
|
tag = "tags"
|
||
|
|
||
|
[permalinks]
|
||
|
blog = "/blog/:title/"
|
||
|
# docs = "/docs/1.0/:sections[1:]/:title/"
|
||
|
|
||
|
[minify.tdewolff.html]
|
||
|
keepWhitespace = false
|
||
|
|
||
|
[related]
|
||
|
threshold = 80
|
||
|
includeNewer = true
|
||
|
toLower = false
|
||
|
[[related.indices]]
|
||
|
name = "categories"
|
||
|
weight = 100
|
||
|
[[related.indices]]
|
||
|
name = "tags"
|
||
|
weight = 80
|
||
|
[[related.indices]]
|
||
|
name = "date"
|
||
|
weight = 10
|