1 2 3 4 5 6 7
document$.subscribe(() => { document.querySelectorAll(".md-typeset a[href^='http']").forEach((link) => { if (link.hostname !== window.location.hostname) { link.setAttribute("rel", "noopener noreferrer"); } }); });