-
Notifications
You must be signed in to change notification settings - Fork 897
Closed
Labels
Milestone
Description
When a link is written like this:
[](http://example.com/)
the HTML is generated as:
<a href="http://example.com/" />
By way of comparison GitHub generates it as:
<a href="http://example.com/"></a>
And renders it as:
Interestingly, WebKit seems to handle the <a href="" /> form really badly in the rendering and element inspector. It leaves the link open to the start of the next anchor tag and adds multiple extra tags in the inspector.
Reactions are currently unavailable