Skip to content

Commit

Permalink
fixup! Display inline images in topics
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsius committed Feb 18, 2019
1 parent b6b3693 commit 57e40ba
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lisp/forge-topic.el
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,9 @@ identifier."
'magit-diff-hunk-heading t heading)
(magit-insert-heading heading))
(insert (forge--fontify-markdown body) "\n\n"))))
(markdown-display-inline-images)))
(when (fboundp 'markdown-display-inline-images)
(let ((markdown-display-remote-images t))
(markdown-display-inline-images)))))

(defvar forge-topic-title-section-map
(let ((map (make-sparse-keymap)))
Expand Down

0 comments on commit 57e40ba

Please sign in to comment.