If I insert a jpg in my org-mode document, I can preview it and scale its width, like so:
Add the following code to my init.el
file:
(setq org-image-actual-width nil)
Then insert this code in my document, where I want the image to appear:
#+ATTR_ORG: :width 300
[[./my_image.jpg]]
On executing org-toggle-inline-images
the image appears in the buffer, 300px wide, as expected.
But if I attempt this same operation with an SVG file, I get a blank placeholder. If I then remove the #+ATTR_ORG
tag, the SVG appears. (at it's pre-defined width)...
Can anyone tell me how I can resize my SVGs image previews? I am running the macports version of Emacs version 25.1 on El Capitan.
Thanks!