2

I was wondering if it's possible to create links that open in a new tab in GitHub Flavored Markdown like this <a href="https://www.example.com" target="_blank">test</a> . How would I be able to do this?

Thanks in advance.

unrealapex
  • 578
  • 9
  • 23

1 Answers1

3

Looking at this answer here it seems that this is not possible, as Github does not include the target attribute even in plain HTML.

As for what I believe is the reasoning, I found this issue on github while browsing, which says that when target="_blank" is used without rel="noreferrer noopener", it can present a severe security vulnerability.

Rolv Apneseth
  • 2,078
  • 2
  • 7
  • 19