I\'m currently writing a document in markdown and I\'d like to make a reference to an image from my text.
this is my text, I want a reference to my image1 [h
I've had a chat with Ryan Gray after reading his answer in a similar post. Actually his solution of using :
[image]: image.png "Image Title"
![Alt text][image]
A reference to the [image](#image).
is only adapted when using multimarkdown.
When it comes to pandoc, the only solution to make cross references is using directly latex keywords:
[image]: image.png "Image Title"
![Alt text \label{mylabel}][image]
See figure \ref{mylabel}.