4

After I insert this link into an .org file, it looks like a link:

[[./relative_path/rock.jpg]]

Is there a convenient way to render the image?

Opening and closing Emacs renders the image, but it's not very convenient.
revert-buffer function doesn't render the image.

I am using Emacs 25.2.1 with Evil Spacemacs.

wolfv
  • 1,403
  • 1
  • 13
  • 30
  • 1
    Does `org-toggle-inline-links` (C-c C-x C-v) help? – Juancho Aug 21 '17 at 14:52
  • 1
    Yes, except the function's name is org-toggle-inline-images. Juancho, make your comment into an answer, or I will make the answer tomorrow. – wolfv Aug 22 '17 at 04:46

1 Answers1

6

The function org-toggle-inline-images (bound to C-c C-x C-v) will toggle (and thus refresh) the display of linked images.

Juancho
  • 5,395
  • 15
  • 20