mastodon-markdown-archive/templates/post.tmpl

27 lines
496 B
Cheetah
Raw Normal View History

---
date: {{ .Post.CreatedAt }}
post_url: {{ .Post.URI }}
post_ids:
- {{ .Post.Id }}
2024-04-21 16:43:55 +00:00
{{- range .Descendants }}
- {{ .Id }}
{{- end }}
---
2024-04-21 16:43:55 +00:00
{{ .Post.Content | tomd }}
{{ range .Post.MediaAttachments }}
{{- if eq .Type "image" -}}
![{{ .Description }}]({{ .Url }})
{{ end }}
{{- end -}}
{{- range .Descendants }}
{{ .Content | tomd -}}
{{ range .MediaAttachments }}
{{- if eq .Type "image" -}}
![{{ .Description }}]({{ .Url }})
{{ end }}
{{- end -}}
{{- end -}}