Hello,

This setting works fine:

(setq org-image-actual-width 300)

  => always resize inline images to 300 pixels

However, this does not {it falls back to 400 and ignores #+ATTR}:

(setq org-image-actual-width '(400))

  => if there is a #+ATTR.*: width="200", resize to 200,
     otherwise resize to 400

I tried different versions of #+ATTR, including:

##+ATTR.*: :width 150px
##+ATTR.*: width="100"
##+ATTR_HTML: :width 300px
#+ATTR_HTML: :width="100"

Any idea what’s wrong?