msnoigrs / ox-rst

reStructuredText Back-End for Org-Mode Export Engine
116 stars 18 forks source link

ATTR_RST not exported for images #48

Closed snilek closed 5 years ago

snilek commented 5 years ago

There seems to be some problem with #+ATTR_RST not being exported for images. Example:

#+title: Test RST image export
#+author: Jan Janský

Attrs fail here:

#+attr_rst: :width 50% :align center
[[./Desktop/image.jpg]]

But work fine here:

#+attr_rst: :margin 2
#+begin_quote
Just a quote.
#+end_quote

is exported as

=====================
Test RST image export
=====================

    :Author: Jan Janský

.. contents::

Attrs fail here:

.. image:: ./Desktop/image.jpg

But work fine here:

  Just a quote.

I am using orgmode v. 9.1.9 on Debian/Linux Emacs v. 26.1 and ox-rst from melpa v. 20190813.427.

Thanks, best regards, Jan Janský

msnoigrs commented 5 years ago

Thank you for letting me know.