Last active
April 27, 2016 05:03
-
-
Save ppworks/a95c70876a4da478d56a9def62e87047 to your computer and use it in GitHub Desktop.
差分に含まれるPRを取得する
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: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
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);