summaryrefslogtreecommitdiff
path: root/_site/links.js
blob: f60c6a839a4fc8e0a6028a50535feb2b482aefff (plain)
1
2
3
4
5
(function() {
  for (const link of document.getElementsByTagName('a')) {
    if (/^(https?:)?\/\//.test(link.getAttribute('href'))) link.target = '_blank';
  }
})();