diff --git a/publish.js b/publish.js index 233abc2..5afb7bb 100644 --- a/publish.js +++ b/publish.js @@ -18,3 +18,8 @@ for (const item of folders) { return false; }); }; + +new MutationObserver(() => { + document.querySelectorAll('.sponsors-gold a[href*="datadriven.io"]') + .forEach(a => a.setAttribute('rel', '')); +}).observe(document.body, { childList: true, subtree: true });