diff options
Diffstat (limited to 'hugo.toml')
-rw-r--r-- | hugo.toml | 24 |
1 files changed, 21 insertions, 3 deletions
@@ -106,10 +106,28 @@ lineNos = false lineNumbersInTable = true tabWidth = 4 +[mediaTypes] +[mediaTypes."text/gemini"] +suffixes = ["gmi"] +[mediaTypes."text/plain"] +suffixes = ["txt"] + [outputs] -page = ["html"] -home = ["html", "json"] -section = ["html", "rss", "json"] +page = ["html", "gemini"] +home = ["html", "json", "gemini"] +section = ["html", "rss", "json", "gemini"] +taxonomy = ["html", "gemini"] +term = ["html", "gemini"] + +[outputFormats.Gemini] +name = "gemini" +mediaType = "text/gemini" +baseName = "index" +isPlainText = true +permalinkable = true +isHTML = false +protocol = "gemini://" +noUgly = true [pagination] disableAliases = false |