aboutsummaryrefslogtreecommitdiff
path: root/internal/feed/template/text.tpl
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.eu>2021-02-21 17:57:40 +0100
committerRené 'Necoro' Neumann <necoro@necoro.eu>2021-02-21 17:57:40 +0100
commit5ad87a4994e241b9d6b981659b7bd0ddf5f7ce31 (patch)
tree7efd40600ea8e9e640d6b7aba93a5ff3d4e11b48 /internal/feed/template/text.tpl
parent48c40ede273bec2f53dd8164db46f902a0b527c8 (diff)
parent2df7f561b6a4977051499731740aae2138c9d001 (diff)
downloadfeed2imap-go-5ad87a4994e241b9d6b981659b7bd0ddf5f7ce31.tar.gz
feed2imap-go-5ad87a4994e241b9d6b981659b7bd0ddf5f7ce31.tar.bz2
feed2imap-go-5ad87a4994e241b9d6b981659b7bd0ddf5f7ce31.zip
Merge branch 'go-1.16'
Diffstat (limited to 'internal/feed/template/text.tpl')
-rw-r--r--internal/feed/template/text.tpl37
1 files changed, 37 insertions, 0 deletions
diff --git a/internal/feed/template/text.tpl b/internal/feed/template/text.tpl
new file mode 100644
index 0000000..57eef18
--- /dev/null
+++ b/internal/feed/template/text.tpl
@@ -0,0 +1,37 @@
+{{- /*gotype:github.com/Necoro/feed2imap-go/internal/feed.feeditem*/ -}}
+{{- with .Item.Link -}}
+<{{.}}>
+
+{{ end -}}
+{{- with .TextBody -}}
+{{.}}
+{{ end -}}
+{{- with .Item.Enclosures}}
+Files:
+{{- range . }}
+ {{ .URL}} ({{with .Length}}{{. | byteCount}}, {{end}}{{.Type}})
+{{- end -}}
+{{- end}}
+--
+Feed: {{ with .Feed.Title -}}{{.}}{{- end }}
+{{ with .Feed.Link -}}
+ <{{.}}>
+{{end -}}
+Item: {{ with .Item.Title -}}
+ {{.}}
+{{- end }}
+{{ with .Item.Link -}}
+ <{{.}}>
+{{end -}}
+{{ with .Date -}}
+ Date: {{.}}
+{{ end -}}
+{{ with .Creator -}}
+ Author: {{.}}
+{{ end -}}
+{{ with (join ", " .Categories) -}}
+ Filed under: {{.}}
+{{ end -}}
+{{ with .FeedLink -}}
+ Feed-Link: {{.}}
+{{ end -}} \ No newline at end of file