diff options
author | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-05-10 23:38:55 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-05-10 23:38:55 +0200 |
commit | f07038a2e65bdf0a569c102d91b15cb3f7d35880 (patch) | |
tree | 276a1c8dbd5a6f15fb3f6f486dbed1f5e1707514 /internal/feed/template | |
parent | 203a2845297ce8746dae1b300cb414f074c9c588 (diff) | |
download | feed2imap-go-f07038a2e65bdf0a569c102d91b15cb3f7d35880.tar.gz feed2imap-go-f07038a2e65bdf0a569c102d91b15cb3f7d35880.tar.bz2 feed2imap-go-f07038a2e65bdf0a569c102d91b15cb3f7d35880.zip |
Fixed linebreaks for Enclosures in text template
Diffstat (limited to 'internal/feed/template')
-rw-r--r-- | internal/feed/template/text.tpl.go | 10 |
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 }} |