SoyaDokio
SoyaDokio

Reputation: 64

Does Github Markdown support title attribute?

I want to add a title attribute to a link, which will show up when the user holds the mouse pointer it. Title attributes are helpful if your link text is not descriptive enough to tell users where they're going. (In reference links, you can use optionally parentheses for the link title instead of quotation marks.)

Github Markdown's seems do not support title attribute.

Upvotes: 5

Views: 1016

Answers (1)

VonC
VonC

Reputation: 1328322

ithub Markdown's seems do not support title attribute.

Yet, GFM specs mentions:

A link contains link text (the visible text), a link destination (the URI that is the link destination), and optionally a link title.

[link](/uri "title")

Give:

<p><a href="/uri" title="title">link</a></p>

Upvotes: 5

Related Questions