diff options
Diffstat (limited to 'lisp/mastodon-tl.el')
-rw-r--r-- | lisp/mastodon-tl.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index c109df5..2964942 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -191,11 +191,11 @@ also render the html" (defun mastodon-tl--content (toot) "Retrieve text content from TOOT." - (let ((content (mastodon-tl--field 'content toot))) + (let ((content (mastodon-tl--field 'content toot)) + (shr-use-fonts nil)) (propertize (with-temp-buffer (insert (decode-coding-string content 'utf-8)) - (let ((shr-use-fonts nil)) - (shr-render-region (point-min) (point-max))) + (shr-render-region (point-min) (point-max)) (buffer-string)) 'face 'default))) |