A Tiny HTML Snippet to "Discuss on HN"

from blog taylor.town, | ↗ original
Discuss this page on HackerNews. const hn = document.getElementById('hn-discuss'); // Set href to "share current URL and title". hn.setAttribute( 'href', `https://news.ycombinator.com/submitlink` + `?u=${encodeURIComponent(window.location.href)}` + `&t=${encodeURIComponent(document.title)}` ); setTimeout( () => { // Replace...