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