Skip to content

Instantly share code, notes, and snippets.

@d6u
Created August 4, 2015 14:59
Show Gist options
  • Select an option

  • Save d6u/4722c5eb556512e59cf8 to your computer and use it in GitHub Desktop.

Select an option

Save d6u/4722c5eb556512e59cf8 to your computer and use it in GitHub Desktop.
copy(
Array.prototype.slice.call(
$('.repo-list-name')
.map(function (i, el) {
return '- [' +el.children[0].textContent.trim() + '](' +
el.children[0].href + ') - ' +
el.nextElementSibling.textContent.trim();
}),
0)
.join('\n')
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment