Skip to content

Instantly share code, notes, and snippets.

@ppworks
Last active April 27, 2016 05:03
Show Gist options
  • Save ppworks/a95c70876a4da478d56a9def62e87047 to your computer and use it in GitHub Desktop.
Save ppworks/a95c70876a4da478d56a9def62e87047 to your computer and use it in GitHub Desktop.
差分に含まれるPRを取得する
javascript:var text='';[].forEach.call(document.querySelectorAll('.issue-link'),function(element){text+="* ["+element.text+" "+element.nextSibling.nextSibling.title.match(/\n(.+)/)[1]+"]"+"("+element.href+")\n";});prompt('コピペせよ', text);
@ppworks
Copy link
Author

ppworks commented Apr 27, 2016

var text='';
[].forEach.call(document.querySelectorAll('.issue-link'),function(element){
text+="* ["+element.text+" "+element.nextSibling.nextSibling.title.match(/\n(.+)/)[1]+"]"+"("+element.href+")\n";
});
prompt('コピペせよ', text);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment