Solved: Open markdown link in new tab

The main problem with Open Markdown links in new tabs is that they open in a new window instead of in the current tab. This can be a distraction if you’re trying to work on a document in multiple tabs and have the link open in a new window.


<a href="http://example.com" target="_blank" rel="noopener">Link</a>

The code line creates a link to the website “http://example.com”. When clicked, the link will open in a new browser window or tab.

Link attributes

There are a few attributes that can be used to identify a link in HTML. The href attribute is the most common and specifies the URL of the linked document. The rel attribute indicates whether the link is a hyperlink or not, and the media attribute specifies the type of media that is associated with the link (e.g., image, video).

Related posts:

Leave a Comment