Created
January 5, 2017 15:00
-
-
Save hubgit/9c2cf2ec2a582b30191d6a96317d1e46 to your computer and use it in GitHub Desktop.
This file contains 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
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