This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / appview / pages / templates / fragments / comment / commentBody.html
336 B 9 lines
1{{ define "fragments/comment/commentBody" }} 2<div class="comment-body"> 3 {{ if not .Comment.Deleted }} 4 <div class="prose dark:prose-invert">{{ .Comment.Body.Text | markdown }}</div> 5 {{ else }} 6 <div class="prose dark:prose-invert italic text-gray-500 dark:text-gray-400">[deleted by author]</div> 7 {{ end }} 8</div> 9{{ end }}