This repository has no description
1{{ define "fragments/comment/commentBody" }}
2<div class="comment-body">
3 {{ if not .Comment.Deleted }}
4 <div class="prose dark:prose-invert mb-1">{{ .Comment.Body.Text | markdown }}</div>
5 {{ template "repo/fragments/reactions"
6 (dict "Reactions" .Reactions
7 "UserReacted" .UserReacted
8 "ThreadAt" .Comment.FeedCommentAtUri
9 "HideIfEmpty" true) }}
10 {{ else }}
11 <div class="prose dark:prose-invert italic text-gray-500 dark:text-gray-400">[deleted by author]</div>
12 {{ end }}
13</div>
14{{ end }}