diff options
author | Nicholas Johnson <mail@nicholasjohnson.ch> | 2024-11-07 00:00:00 +0000 |
---|---|---|
committer | Nicholas Johnson <mail@nicholasjohnson.ch> | 2024-11-07 00:00:00 +0000 |
commit | 44f878e5ff49d359a95cf38434259707f8078151896463a43e7a7f17dd390e0e (patch) | |
tree | 75d1a38223747c6615597b409738b9ac24824d0ffbb92f5cef25c214de09ed43 /config/_default/hugo.toml | |
parent | f62eaded157e026d92077a18f8211b64a30fdc436188f19d32e089244d3c4c20 (diff) | |
download | hugo-theme-journal-44f878e5ff49d359a95cf38434259707f8078151896463a43e7a7f17dd390e0e.tar.gz hugo-theme-journal-44f878e5ff49d359a95cf38434259707f8078151896463a43e7a7f17dd390e0e.zip |
Transition to new config file naming convention
Diffstat (limited to 'config/_default/hugo.toml')
-rw-r--r-- | config/_default/hugo.toml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/config/_default/hugo.toml b/config/_default/hugo.toml new file mode 100644 index 0000000..e2e77ea --- /dev/null +++ b/config/_default/hugo.toml @@ -0,0 +1,22 @@ +[mediaTypes] + [mediaTypes."application/atom"] + suffixes = ["xml"] + [mediaTypes."text/gemini"] + suffixes = ["gmi"] + +[outputFormats] + [outputFormats.Atom] + mediaType = "application/atom" + baseName = "atom" + [outputFormats.Gemini] + mediaType = "text/gemini" + [outputFormats.Gemini_Atom] + mediaType = "application/atom" + baseName = "atom" + +[markup] + [markup.goldmark] + [markup.goldmark.renderer] + hardWraps = true + [markup.goldmark.extensions] + linkify = false |