www
www

Reputation: 596

How can I insert image between text in sphinx

I would like to learn how an image is inserted between words such as:

Lorem ipsum :imageshouldcomehere: dolor sit amet.

Is it possible in sphinx? If yes, how?

Upvotes: 1

Views: 1163

Answers (1)

Alex
Alex

Reputation: 8539

I think this should answer your question.

Lorem ipsum |image_reference| dolor sit amet.

.. |image_reference| image:: <path/to/img>

Upvotes: 4

Related Questions