2022-05-24 17:25:16 -07:00
|
|
|
{{- $itemprop := "mentions" -}}
|
|
|
|
{{- with .Get "itemprop" -}}
|
|
|
|
{{ $itemprop = . }}
|
|
|
|
{{- end -}}
|
2022-06-11 13:24:47 -07:00
|
|
|
{{- if .Get "p" -}}
|
|
|
|
<p
|
|
|
|
class="h-cite{{ with .Get "reply" }} in-reply-to{{ end }}" itemprop="{{ $itemprop }}"{{ with .Get "role" }} role="{{ . }}"{{ end }} itemscope="" itemtype="https://schema.org/{{ .Get "itemtype" }}">
|
|
|
|
{{- .Inner | markdownify | safeHTML -}}
|
|
|
|
</p>
|
|
|
|
{{- else -}}
|
2022-06-10 19:24:54 -07:00
|
|
|
<span
|
|
|
|
class="h-cite{{ with .Get "reply" }} in-reply-to{{ end }}" itemprop="{{ $itemprop }}"{{ with .Get "role" }} role="{{ . }}"{{ end }} itemscope="" itemtype="https://schema.org/{{ .Get "itemtype" }}">
|
2022-05-24 17:25:16 -07:00
|
|
|
{{- .Inner | markdownify | safeHTML -}}
|
2022-06-10 19:24:54 -07:00
|
|
|
</span>
|
2022-06-11 13:24:47 -07:00
|
|
|
{{- end -}}
|