generated from hugo-fixit/component-skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhugo.toml
71 lines (62 loc) · 2.51 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
# -------------------------------------------------------------------------------------
# Media Types
# See: https://gohugo.io/templates/output-formats/#media-types
# -------------------------------------------------------------------------------------
[mediaTypes]
# Options to make output atom.xml files
# Warning: The application/atom+xml media type will cause an unknown error in resources.GetRemote!
# [mediaTypes."application/atom+xml"]
# suffixes = ["xml"]
# -------------------------------------------------------------------------------------
# Output Format Definitions
# See: https://gohugo.io/templates/output-formats/#output-format-definitions
# -------------------------------------------------------------------------------------
[outputFormats]
# Options to make output atom.xml file
[outputFormats.atom]
# generated file = <baseName>.<mediaType."application/atom+xml".suffixes[0]> = atom.xml
baseName = "atom"
# Warning: The application/atom+xml media type will cause an unknown error in resources.GetRemote!
mediaType = "application/xml"
isPlainText = false
isHTML = false
# rel = "alternate"
noUgly = true
# -------------------------------------------------------------------------------------
# Customizing Output Formats
# See: https://gohugo.io/templates/output-formats/#customizing-output-formats
# -------------------------------------------------------------------------------------
[outputs]
# <baseURL>/atom.xml
home = ["html", "rss", "atom"]
# <baseURL>/posts/atom.xml etc.
section = ["html", "rss", "atom"]
# <baseURL>/tags/foo/atom.xml etc.
term = ["html", "rss", "atom"]
[params]
# Global Feed config for ATOM feed.
[params.feed]
# The number of posts to include in the feed. If set to -1, all posts.
limit = 10
# whether to show the full text content in feed.
fullText = true
# Section page config (all pages in section)
[params.section]
# Section feed config for ATOM feed.
[params.section.feed]
# The number of posts to include in the feed. If set to -1, all posts.
limit = -1
# whether to show the full text content in feed.
fullText = false
# Term list (category or tag) page config
[params.list]
# Term list feed config for ATOM feed.
[params.list.feed]
# The number of posts to include in the feed. If set to -1, all posts.
limit = -1
# whether to show the full text content in feed.
fullText = false
[module]
[module.hugoVersion]
extended = true
min = "0.127.0"