Closed hochan222 closed 2 years ago
Good suggestion, @hochan222 ! I agree that we should remove title
attributes from links.
If you see
<a href="http://www.google.com/search?q=javascript+module+pattern" title="http://www.google.com/search?q=javascript+module+pattern">모듈 패턴</a>
I think you can safely replace it with
<a href="http://www.google.com/search?q=javascript+module+pattern">모듈 패턴</a>
[]()
syntax in markdown.[모듈 패턴](http://www.google.com/search?q=javascript+module+pattern)
I had a question while converting html to markdown in that PR.
I have seen the following code convert as follows.
That grammar was an existing grammar in GFM.
However, I think there is a disadvantage that can be obtained by additionally specifying the title in markdown
[]()
.title
is an attribute ofHTMLElement
.)This is contrary to the reasons for adopting the markdown approach. OWD project: convert MDN content to Markdown
Why do we need a title?