Is there a way to open the below markdown link in new tab? I\'ve got some result from markdown target=“_blank”, but in my case it\'s different have used <>
If you have access to JavaScript, you can run a simple script to handle this for you wherever your markdown is rendered:
const anchors = document.querySelectorAll('a'); anchors.forEach((a) => { a.setAttribute('target', '__blank'); a.setAttribute('rel', 'noopener noreferrer'); });