Skip to content

Instantly share code, notes, and snippets.

@remy
Created June 4, 2014 12:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save remy/a81a1cadee6f1d10bbd2 to your computer and use it in GitHub Desktop.
Save remy/a81a1cadee6f1d10bbd2 to your computer and use it in GitHub Desktop.
Contributors from github contrib page as markdown
// run this in devtools on https://github.com/remy/nodemon/graphs/contributors
copy( $('a.aname').parent().map(function () {
var name = $(this).find('a.aname').text();
var contribs = $(this).find('a.cmt')[0];
return { name: name, contribs: contribs };
}).map(function () {
return '* [' + this.name + '](https://github.com/' + this.name + ')';
}).get().join('\n') )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment