Github Markdown 是否支持 title 属性?

Does Github Markdown support title attribute?

我想给 link 添加一个 title 属性,当用户按住鼠标指针时它会显示出来。如果您的 link 文本描述性不足以告诉用户他们要去哪里,标题属性会很有帮助。 (在参考文献 link 中,您可以选择性地为 link 标题使用括号而不是引号。)

Github Markdown 好像不支持 title 属性

ithub Markdown's seems do not support title attribute.

然而,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")

给予:

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