lruiz/MarkdownPapers

The only way to specify a "title" tag on an image is to use the "id" mechanism

Closed this issue · 2 comments

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]

You can use this form:

  ![alt](path/to/image1.png "title")

Beautiful!