summaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-01-19 09:46:49 +0200
committerPaul Buetow <paul@buetow.org>2025-01-19 09:46:49 +0200
commite2b241d40ef1b4ded9b922dc195a72aa2b546a4d (patch)
treebc3da03ac3476651c1ea7147027f1791f396821a /internal
parentf520f130d266691301940f357967108d6a8cb7da (diff)
fix
Diffstat (limited to 'internal')
-rw-r--r--internal/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/main.go b/internal/main.go
index 90ed197..b9f4b3e 100644
--- a/internal/main.go
+++ b/internal/main.go
@@ -27,7 +27,7 @@ func Main(composeEntryDefault bool) {
maxDaysQueued := flag.Int("maxDaysQueued", 365, "Maximum days worth of queued posts until target++ and pauseDays--")
pauseDays := flag.Int("pauseDays", 3, "How many days until next post can be posted?")
lookback := flag.Int("lookback", 30, "How many days look back in time for posting history")
- geminiSummaryFor := flag.String("GeminiSummaryFor", "", "Generate a summary in Gemini Gemtext format, format is coma separated string of months, e.g. 202410,202411")
+ geminiSummaryFor := flag.String("geminiSummaryFor", "", "Generate a summary in Gemini Gemtext format, format is coma separated string of months, e.g. 202410,202411")
geminiCapsule := flag.String("geminiCapsule", "foo.zone", "Address of the Gemini capsule. Used by geminiEnable to detect internal links")
gemtexterEnable := flag.Bool("gemtexterEnable", false, "Add special Gemtexter (the static site generator) tags to the Gemini Gemtext summary")
flag.Parse()