Is there a way to let a Link, written in githubs markdown, open in a new tab?
All posts I have found related to this suggests to use HTML and target=\"_blank\"
, whi
There is a solution specific to websites using GitHub pages: adding line
markdown: kramdown
to file _config.yml
, you can use [go](http://stackoverflow.com){:target="_blank" rel="noopener"}
because then GitHub pages engine uses another markdown called kramdown for generating html. However, it does not work on previews and in markdown rendered by GitHub directly in the project repository.