Skip to content

Instantly share code, notes, and snippets.

@uadev
Last active August 29, 2015 14:11
Show Gist options
  • Save uadev/37a716216d5d53d9b39f to your computer and use it in GitHub Desktop.
Save uadev/37a716216d5d53d9b39f to your computer and use it in GitHub Desktop.
Generate Release Notes from compare view
function getNotes() {
Array.prototype.map.call(
document.querySelectorAll('.comment-body > p'),
function(c) { return '\\' + c.innerHTML}
).join("\n")
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment