Skip to content

Instantly share code, notes, and snippets.

@hubgit
Created January 5, 2017 15:00
Show Gist options
  • Save hubgit/9c2cf2ec2a582b30191d6a96317d1e46 to your computer and use it in GitHub Desktop.
Save hubgit/9c2cf2ec2a582b30191d6a96317d1e46 to your computer and use it in GitHub Desktop.
Array.from(document.querySelectorAll('h2'))
.map(node => node.textContent.trim())
.filter(node => node.match(/^\d/))
.join('\n')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment