Created
May 15, 2018 22:26
-
-
Save edwardkenfox/77b6d31006ac5bece2281b23c5688eea to your computer and use it in GitHub Desktop.
Copy GitHub PR title and link in markdown format
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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