mastodon-markdown-archive/templates/post.tmpl
2024-05-09 01:13:10 +02:00

26 lines
498 B
Cheetah

---
date: {{ .Post.CreatedAt }}
post_url: {{ .Post.URI }}
post_ids:
- {{ .Post.Id }}
{{- range .Descendants }}
- {{ .Id }}
{{- end }}
---
{{ .Post.Content | tomd }}
{{ range .Post.MediaAttachments }}
{{- if eq .Type "image" -}}
![{{ .Description }}]({{ .Path }})
{{ end }}
{{- end -}}
{{- range .Descendants }}
{{ .Content | tomd -}}
{{ range .MediaAttachments }}
{{- if eq .Type "image" -}}
![{{ .Description }}]({{ .Path }})
{{ end }}
{{- end -}}
{{- end -}}