diff options
| author | Paul Buetow <paul@buetow.org> | 2024-12-31 18:26:29 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2024-12-31 18:26:29 +0200 |
| commit | dbfe96a41c0cb9544ac04a32d918806128d7370e (patch) | |
| tree | 5624fae50d8a6e8fd6f1b0257b033e355cc752c3 /internal/summary | |
| parent | ec523bdd63bd23cfec465e2cc45d0c17198ef4c4 (diff) | |
fix
Diffstat (limited to 'internal/summary')
| -rw-r--r-- | internal/summary/summary.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/summary/summary.go b/internal/summary/summary.go index b2a8fde..4621d45 100644 --- a/internal/summary/summary.go +++ b/internal/summary/summary.go @@ -28,7 +28,7 @@ func Run(ctx context.Context, args config.Args) error { if err != nil { return err } - fmt.Print(gemtext) + fmt.Println(gemtext) return nil } @@ -80,7 +80,7 @@ func generateGemtext(entries []entry.Entry, title string, gemtexterEnable bool) if gemtexterEnable { sb.WriteString("\n\nOther related posts:") - sb.WriteString("\n\n<< template::inline::index posts-for") + sb.WriteString("\n\n<< template::inline::index posts-from") sb.WriteString("\n\n") } |
