From ea28eecc04504a019e13a6910f67d92a412f17e7 Mon Sep 17 00:00:00 2001 From: Dominic Reich Date: Sat, 25 Nov 2023 22:34:01 +0100 Subject: [PATCH] fix broken humans.txt and tootpick.html output --- config/_default/config.toml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/config/_default/config.toml b/config/_default/config.toml index b8740b2..4b41e2b 100644 --- a/config/_default/config.toml +++ b/config/_default/config.toml @@ -83,8 +83,21 @@ IsPlainText = true noUgly = false Rel = "alternate" +[outputFormats.HumansTXT] +mediaType = "text/plain" +baseName = "humans" +isPlainText = true +notAlternative = true + +[outputFormats.Tootpick] +mediaType = "text/html" +basename = "tootpick" +isPlainText = false +isHTML = true +notAlternative = true + [outputs] -home = [ "HTML", "ATOM", "JSON"] +home = [ "HTML", "ATOM", "JSON", "HumansTXT", "Tootpick"] section = [ "HTML", ] page = [ "HTML" ] taxonomy = [ "HTML" ]