Skip to content

Instantly share code, notes, and snippets.

@BasixKOR
Created June 14, 2019 05:55
Show Gist options
  • Save BasixKOR/d030f5fd86b7e07a5f1b20b8ecdb5376 to your computer and use it in GitHub Desktop.
Save BasixKOR/d030f5fd86b7e07a5f1b20b8ecdb5376 to your computer and use it in GitHub Desktop.
Azur Lane Wiki Parsing
[...document.querySelectorAll('table.wikitable.col-7-center td[style="background-color:PowderBlue"]')]
.map(e => `'${e.textContent.slice(0, -1)}': { small: ${e.nextElementSibling.textContent.slice(0, -1)}, medium: ${e.nextElementSibling.nextElementSibling.textContent.slice(0, -1)}, `
+ `large: ${e.nextElementSibling.nextElementSibling.nextElementSibling.textContent.slice(0, -1)}, boss: ${e.nextElementSibling.nextElementSibling.nextElementSibling.nextElementSibling.textContent.slice(0, -1)}}`)
// https://azurlane.koumakan.jp/Experience
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment