The only way to specify a "title" tag on an image is to use the "id" mechanism
Closed this issue · 2 comments
dplassgit commented
I'm able to specify alt-tag on an image using this:
![text](url/to/image.jpg)
But, I cannot specify title tag unless I usethis mechanism:
[arbitrary_id]: path/to/image2.png "title_text" ![alt_text][arbitrary_id]
lruiz commented
You can use this form:
![alt](path/to/image1.png "title")
dplassgit commented
Beautiful!