On 2011-02-27, Luc Saffre wrote: > Hello, > I'd like to add a role ``:foto:`` which in html simply inserts a > clickable image to a remote image gallery.
... Standard reStructuredText already supports "clickable" images with links via the "target" option of the "image" directive: http://docutils.sourceforge.net/docs/ref/rst/directives.html#image If inline images are required, you can use a substitution, e.g. :: An inline image (|example|) example: .. |EXAMPLE| image:: example.png :target: http://test.org Günter -- You received this message because you are subscribed to the Google Groups "sphinx-dev" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sphinx-dev?hl=en.
