format all config files
This commit is contained in:
parent
4ebe79d6ac
commit
27e009ab0b
|
@ -1,92 +1,89 @@
|
||||||
theme = 'blowfish'
|
theme = "blowfish"
|
||||||
baseURL = 'https://oururl.de/'
|
baseURL = "https://oururl.de/"
|
||||||
defaultContentLanguage = 'de'
|
defaultContentLanguage = "de"
|
||||||
relativeURLs = true
|
relativeURLs = true
|
||||||
canonifyURLs = true
|
canonifyURLs = true
|
||||||
|
|
||||||
pluralizeListTitles = false
|
pluralizeListTitles = false
|
||||||
|
|
||||||
enableRobotsTXT = true
|
enableRobotsTXT = true
|
||||||
summaryLength = 0
|
summaryLength = 0
|
||||||
|
|
||||||
buildDrafts = false
|
buildDrafts = false
|
||||||
buildFuture = false
|
buildFuture = false
|
||||||
|
|
||||||
enableEmoji = true
|
enableEmoji = true
|
||||||
|
|
||||||
[pagination]
|
[pagination]
|
||||||
pagerSize = 100
|
pagerSize = 100
|
||||||
|
|
||||||
[imaging]
|
[imaging]
|
||||||
anchor = 'Center'
|
anchor = "Center"
|
||||||
|
|
||||||
[taxonomies]
|
[taxonomies]
|
||||||
tag = 'tags'
|
tag = "tags"
|
||||||
category = 'categories'
|
category = "categories"
|
||||||
author = 'authors'
|
author = "authors"
|
||||||
series = 'series'
|
series = "series"
|
||||||
|
|
||||||
[sitemap]
|
[sitemap]
|
||||||
changefreq = 'daily'
|
changefreq = "daily"
|
||||||
filename = 'sitemap.xml'
|
filename = "sitemap.xml"
|
||||||
priority = 0.5
|
priority = 0.5
|
||||||
|
|
||||||
[permalinks]
|
[permalinks]
|
||||||
post = '/post/:year/:month/:day/:title/'
|
post = "/post/:year/:month/:day/:title/"
|
||||||
|
|
||||||
[outputs]
|
[outputs]
|
||||||
home = ['html', 'rss', 'json']
|
home = ["html", "rss", "json"]
|
||||||
section = ['html', 'Calendar', 'rss', 'xml']
|
section = ["html", "Calendar", "rss", "xml"]
|
||||||
page = ['html', 'Calendar']
|
page = ["html", "Calendar"]
|
||||||
|
|
||||||
# Output Formats Configuration
|
# Output Formats Configuration
|
||||||
[outputFormats.Calendar]
|
[outputFormats.Calendar]
|
||||||
mediaType = 'text/calendar'
|
mediaType = "text/calendar"
|
||||||
baseName = 'index'
|
baseName = "index"
|
||||||
isPlainText = true
|
isPlainText = true
|
||||||
notAlternative = true
|
notAlternative = true
|
||||||
|
|
||||||
[outputFormats.XML]
|
[outputFormats.XML]
|
||||||
mediaType = 'application/xml'
|
mediaType = "application/xml"
|
||||||
baseName = 'index'
|
baseName = "index"
|
||||||
isPlainText = true
|
isPlainText = true
|
||||||
|
|
||||||
[outputFormats.RSS]
|
[outputFormats.RSS]
|
||||||
mediaType = 'application/rss+xml'
|
mediaType = "application/rss+xml"
|
||||||
|
|
||||||
# Media Types Configuration
|
# Media Types Configuration
|
||||||
[mediaTypes]
|
[mediaTypes]
|
||||||
[mediaTypes.'text/calendar']
|
[mediaTypes.'text/calendar']
|
||||||
suffixes = ['ics']
|
suffixes = ["ics"]
|
||||||
|
|
||||||
[mediaTypes.'application/rss+xml']
|
[mediaTypes.'application/rss+xml']
|
||||||
suffixes = ['xml', 'rss']
|
suffixes = ["xml", "rss"]
|
||||||
|
|
||||||
[related]
|
[related]
|
||||||
threshold = 0
|
threshold = 0
|
||||||
toLower = false
|
toLower = false
|
||||||
|
|
||||||
[[related.indices]]
|
[[related.indices]]
|
||||||
name = 'tags'
|
name = "tags"
|
||||||
weight = 100
|
weight = 100
|
||||||
|
|
||||||
[[related.indices]]
|
[[related.indices]]
|
||||||
name = 'categories'
|
name = "categories"
|
||||||
weight = 100
|
weight = 100
|
||||||
|
|
||||||
[[related.indices]]
|
[[related.indices]]
|
||||||
name = 'series'
|
name = "series"
|
||||||
weight = 50
|
weight = 50
|
||||||
|
|
||||||
[[related.indices]]
|
[[related.indices]]
|
||||||
name = 'authors'
|
name = "authors"
|
||||||
weight = 20
|
weight = 20
|
||||||
|
|
||||||
[[related.indices]]
|
[[related.indices]]
|
||||||
name = 'date'
|
name = "date"
|
||||||
weight = 10
|
weight = 10
|
||||||
|
|
||||||
[[related.indices]]
|
[[related.indices]]
|
||||||
applyFilter = false
|
applyFilter = false
|
||||||
name = 'fragmentrefs'
|
name = "fragmentrefs"
|
||||||
type = 'fragments'
|
type = "fragments"
|
||||||
weight = 10
|
weight = 10
|
||||||
|
|
|
@ -8,10 +8,8 @@
|
||||||
colorScheme = "fira" # "congo"
|
colorScheme = "fira" # "congo"
|
||||||
defaultAppearance = "dark" # valid options: light or dark
|
defaultAppearance = "dark" # valid options: light or dark
|
||||||
autoSwitchAppearance = false
|
autoSwitchAppearance = false
|
||||||
|
|
||||||
enableSearch = true
|
enableSearch = true
|
||||||
enableCodeCopy = false
|
enableCodeCopy = false
|
||||||
|
|
||||||
replyByEmail = false
|
replyByEmail = false
|
||||||
|
|
||||||
# mainSections = ["section1", "section2"]
|
# mainSections = ["section1", "section2"]
|
||||||
|
@ -21,14 +19,11 @@ replyByEmail = false
|
||||||
disableImageOptimization = false
|
disableImageOptimization = false
|
||||||
disableTextInHeader = false
|
disableTextInHeader = false
|
||||||
backgroundImageWidth = 1200
|
backgroundImageWidth = 1200
|
||||||
|
|
||||||
# defaultBackgroundImage = "/img/cccb-im-winter.jpg" # used as default for background images
|
# defaultBackgroundImage = "/img/cccb-im-winter.jpg" # used as default for background images
|
||||||
defaultFeaturedImage = "/img/avatar-CCCB-Logo.png" # used as default for featured images in all articles
|
defaultFeaturedImage = "/img/avatar-CCCB-Logo.png" # used as default for featured images in all articles
|
||||||
|
|
||||||
# highlightCurrentMenuArea = true
|
# highlightCurrentMenuArea = true
|
||||||
smartTOC = true
|
smartTOC = true
|
||||||
smartTOCHideUnfocusedChildren = true
|
smartTOCHideUnfocusedChildren = true
|
||||||
|
|
||||||
giteaDefaultServer = "https://git.fsfe.org"
|
giteaDefaultServer = "https://git.fsfe.org"
|
||||||
forgejoDefaultServer = "https://git.berlin.ccc.de"
|
forgejoDefaultServer = "https://git.berlin.ccc.de"
|
||||||
|
|
||||||
|
@ -117,7 +112,6 @@ forgejoDefaultServer = "https://git.berlin.ccc.de"
|
||||||
series = "series"
|
series = "series"
|
||||||
tag = "tags"
|
tag = "tags"
|
||||||
|
|
||||||
|
|
||||||
[term]
|
[term]
|
||||||
showHero = false
|
showHero = false
|
||||||
# heroStyle = "background" # valid options: basic, big, background, thumbAndBackground
|
# heroStyle = "background" # valid options: basic, big, background, thumbAndBackground
|
||||||
|
|
Loading…
Reference in a new issue