diff options
| -rw-r--r-- | haunt/jakob/utils/comments.scm | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/haunt/jakob/utils/comments.scm b/haunt/jakob/utils/comments.scm index 8645fb7..e228a6d 100644 --- a/haunt/jakob/utils/comments.scm +++ b/haunt/jakob/utils/comments.scm @@ -87,10 +87,10 @@ internal-comment-name) comment)) (define (comment-content comment) - ((if (webmention? comment) - webmention-comment - internal-comment-comment) - comment)) + (if (webmention? comment) + `((p ,(webmention-comment comment))) + (safe-markdown->sxml + (internal-comment-comment comment)))) (define (comment-url comment) ((if (webmention? comment) webmention-url @@ -128,9 +128,7 @@ (datetime ,(comment-publish-time comment))) ,(date->string (comment-publish-time comment) "~B ~e, ~Y at ~H:~M"))) (div (@ (class "e-content p-name comment-content")) - ,@(chain comment - (comment-content _) - (safe-markdown->sxml _))) + ,@(comment-content comment)) (ul (@ (class "comment-reactions")) ,@(map (match-lambda ((emote . count) |