why can't you write some code that opens all links in a new tab?

Viewed 24

Why do we have to write Visit link?

Or for instance, in markdown, why do we have to write link, and in that there is no way to open a new tab unless you use HTML.

So why isn't there a solution so that all links in markdown pages open in a new tab?

Thank you.

1 Answers

adding the target="_blank" attribute to your anchor tag will open the link in a new tab if that's what you're after.

<a src="www.google.com" target="_blank">Link</a>
Related