|
| From: | Robert Eckl |
| Subject: | [O] Hyperlinked Images with ox-html |
| Date: | Wed, 10 Jul 2013 05:22:20 +0200 |
| User-agent: | Gnus/5.130008 (Ma Gnus v0.8) Emacs/24.3.50 (gnu/linux) |
Using Org-mode version 8.0.5 (release_8.0.5-429-gc31655
GNU Emacs 24.3.50
exporting this fragment
#+ATTR_HTML: :width 220px :align right
[[http://orgmode.org/worg/][http://example.org/picture.jpg]]
gives
<div class="figure">
<p>
<a href="http://orgmode.org/worg"width="220px" align="right" >
<img src="http://example.org/picture.jpg" />
</a>
</p>
</div>
instead of
<div class="figure">
<p>
<a href="http://orgmode.org/worg">
<img src="http://example.org/picture.jpg" width="220px" align="right"/>
</a>
</p>
</div>
So the attributes for <img> are linked to <a> instead of <img> and
ignored.
What I'm missing?
TIA,
Robert
| [Prev in Thread] | Current Thread | [Next in Thread] |