blob: 0c103343db712cbeb9864e92d0022b768b0f3788 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
package template
var Text = fromString("Feed", textTpl, false)
//noinspection HtmlDeprecatedAttribute,HtmlUnknownTarget
const textTpl = `{{- /*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 -}}`
|