{{- range .Sections -}}
{{- if eq .Type "RAW_TEXT" -}}
{{- else if eq .Type "LINK" -}}
{{- $linkCls := "link" -}}
{{- $url := string .URL -}}
{{- if or (hasSuffix $url ".jpg") (hasSuffix $url ".jpeg") (hasSuffix $url ".png") (hasSuffix $url ".gif") -}}
{{- $linkCls = "link--IMG" -}}
{{- end -}}
{{- else if eq .Type "HEADING_1" -}}
{{- end -}}
{{- end -}}
```
{{- else if eq .Type "REFLOW_TEXT" -}}
{{- .Text -}}
{{- .Text -}}
#
{{- else if eq .Type "HEADING_2" -}}
{{- .Text -}}
##
{{- else if eq .Type "HEADING_3" -}}
{{- .Text -}}
###
{{- else if eq .Type "LIST" -}}
{{- .Text -}}
-
{{- range .Items -}}
- {{- . -}} {{- end -}}