aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.eu>2020-05-10 23:38:55 +0200
committerRené 'Necoro' Neumann <necoro@necoro.eu>2020-05-10 23:38:55 +0200
commitf07038a2e65bdf0a569c102d91b15cb3f7d35880 (patch)
tree276a1c8dbd5a6f15fb3f6f486dbed1f5e1707514
parent203a2845297ce8746dae1b300cb414f074c9c588 (diff)
downloadfeed2imap-go-f07038a2e65bdf0a569c102d91b15cb3f7d35880.tar.gz
feed2imap-go-f07038a2e65bdf0a569c102d91b15cb3f7d35880.tar.bz2
feed2imap-go-f07038a2e65bdf0a569c102d91b15cb3f7d35880.zip
Fixed linebreaks for Enclosures in text template
-rw-r--r--internal/feed/template/text.tpl.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/internal/feed/template/text.tpl.go b/internal/feed/template/text.tpl.go
index 0c10334..19aa9b2 100644
--- a/internal/feed/template/text.tpl.go
+++ b/internal/feed/template/text.tpl.go
@@ -11,11 +11,11 @@ const textTpl = `{{- /*gotype:github.com/Necoro/feed2imap-go/internal/feed.feedi
{{- with .TextBody -}}
{{.}}
{{ end -}}
-{{- with .Item.Enclosures -}}
-Files:
- {{- range . -}}
- {{- .URL}} ({{with .Length}}{{. | byteCount}}, {{end}}{{.Type}})
- {{- end -}}
+{{- with .Item.Enclosures}}
+Files:
+{{- range . }}
+ {{ .URL}} ({{with .Length}}{{. | byteCount}}, {{end}}{{.Type}})
+{{- end -}}
{{- end}}
--
Feed: {{ with .Feed.Title -}}{{.}}{{- end }}