Hacker News new | ask | show | jobs
by timkly 4822 days ago
https://news.ycombinator.com/item?id=5464028&title=testi... - you can just hack it in. maybe someone could put together a simple bookmarklet to get the title appended to the url
1 comments

Oh well… Here is a simple bookmarklet that will append a slug to the url:

    javascript:history.pushState({}, document.title, document.URL + "&title=" + document.querySelector('.title a').innerText.toLowerCase().replace(/[^\w ]+/g,'').replace(/ +/g,'-'))