diff options
| author | Paul Buetow <paul@buetow.org> | 2025-02-13 10:08:56 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-02-13 10:08:56 +0200 |
| commit | cd57f5a015ae943e57fafd84136d58799de040a3 (patch) | |
| tree | 0aa15358aece9bbc520e785c4182f0a89a63db0f /internal/summary | |
| parent | 37be3c5b60ad39f5b34be91a45ee7f97a7c41b9d (diff) | |
increase max link len
Diffstat (limited to 'internal/summary')
| -rw-r--r-- | internal/summary/summary.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/summary/summary.go b/internal/summary/summary.go index f943754..0eaea5a 100644 --- a/internal/summary/summary.go +++ b/internal/summary/summary.go @@ -72,7 +72,7 @@ func generateGemtext(args config.Args, entries []entry.Entry, title string) (str sb.WriteString("\n") for _, url := range urls { sb.WriteString("\n") - sb.WriteString(gemtextLink(args.GeminiCapsules, url, 30)) + sb.WriteString(gemtextLink(args.GeminiCapsules, url, 100)) } } } |
