Does Github Markdown support title attribute?

Solution 1:

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>