53 lines
1.1 KiB
TOML
53 lines
1.1 KiB
TOML
baseURL = "http://example.org"
|
|
title = "Hugo Zzo Theme"
|
|
theme = "zzo"
|
|
|
|
defaultContentLanguage = "en"
|
|
defaultContentLanguageInSubdir = true
|
|
hasCJKLanguage = true
|
|
|
|
summaryLength = 70
|
|
buildFuture = true
|
|
|
|
copyright = "©{year}, All Rights Reserved"
|
|
timeout = 10000
|
|
enableEmoji = true
|
|
paginate = 13
|
|
rssLimit = 100
|
|
|
|
enableGitInfo = false
|
|
googleAnalytics = ""
|
|
|
|
[markup]
|
|
[markup.goldmark]
|
|
[markup.goldmark.renderer]
|
|
hardWraps = true
|
|
unsafe = true
|
|
xHTML = true
|
|
[markup.highlight]
|
|
codeFences = true
|
|
lineNos = true
|
|
lineNumbersInTable = true
|
|
noClasses = false
|
|
[markup.tableOfContents]
|
|
endLevel = 4
|
|
ordered = false
|
|
startLevel = 2
|
|
|
|
[outputs]
|
|
home = ["HTML", "RSS", "SearchIndex"]
|
|
section = ["HTML", "RSS", "SearchIndex"]
|
|
taxonomyTerm = ["HTML", "RSS", "SearchIndex"]
|
|
taxonomy = ["HTML", "RSS", "SearchIndex"]
|
|
|
|
[outputFormats]
|
|
[outputFormats.SearchIndex]
|
|
mediaType = "application/json"
|
|
baseName = "index"
|
|
isPlainText = true
|
|
notAlternative = true
|
|
|
|
[taxonomies]
|
|
category = "categories"
|
|
tag = "tags"
|
|
series = "series" |