Skip to content

Instantly share code, notes, and snippets.

@edwardkenfox
Created May 15, 2018 22:26
Show Gist options
  • Save edwardkenfox/77b6d31006ac5bece2281b23c5688eea to your computer and use it in GitHub Desktop.
Save edwardkenfox/77b6d31006ac5bece2281b23c5688eea to your computer and use it in GitHub Desktop.
Copy GitHub PR title and link in markdown format
javascript:(function(){ var title = document.querySelector('.js-issue-title').innerText; var prNum = document.querySelector('.gh-header-number').innerText; var link = location.href.split('#')[0]; var text = `${title} [${prNum}](${location.href.split('#')[0]})` ; var b=document.createElement("textarea"), c=document.getSelection(); b.textContent=text, document.body.appendChild(b), c.removeAllRanges(), b.select(), document.execCommand("copy"), c.removeAllRanges(), document.body.removeChild(b); }());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment