aboutsummaryrefslogtreecommitdiff
path: root/assets/templates/markdown-feed.yaml
blob: fbe763b618a3fd56649a1c31e4c464ae6255e88f (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
43
44
45
46
47
48
49
50
---
{{ range $key, $value := . -}}
{{- if or
  (eq $key "author")
  (eq $key "date")
  (eq $key "tags")
-}}
{{- $key }}: {{ $value }}
{{ end -}}
{{ end -}}
feed:
{{ range $key, $value := . -}}
{{- if and
  (ne $key "author")
  (ne $key "content")
  (ne $key "date")
  (ne $key "tags")
-}}
{{ print "  " }}{{- $key }}: {{ $value | jsonify }}
{{ end -}}
{{ end -}}
---

{{ $content := .content | replaceRE "{" "{" | replaceRE "}" "}" -}}
{{ $content }}

{{- $enclosureDescription := "Image/Picture" -}}
{{- with $content -}}
  {{ $enclosureDescription = $content | truncate 80 "" }}
{{- end }}

{{ with .enclosure -}}
{{- if or
  (in . ".apng")
  (in . ".avif")
  (in . ".gif")
  (in . ".jfif")
  (in . ".jpeg")
  (in . ".jpg")
  (in . ".pjp")
  (in . ".pjpeg")
  (in . ".png")
  (in . ".svg")
  (in . ".webp")
-}}
![{{ $enclosureDescription }}]({{ . }} "
  {{ $enclosureDescription }}"
)
{{- end -}}
{{- end }}