m7v / kanji-press

A kanji-based word game

Home Page:https://kanji.press

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Kanji-Press

A game of kanji-based words.

Credits

The word lists are taken from https://en.wiktionary.org/wiki/Appendix:JLPT

Copy the words like this:

copy(JSON.stringify(
  (document.querySelector('#mw-content-text ul')
    .textContent
    .split('\n')
    .map((word) => word.split(' -'))
    .map((pair) => [ pair[0].split(', ')[0], pair[0].split(', ')[1] || '', pair[1] ])
    .filter((word) => word[1])
  ), null, 2))

About

A kanji-based word game

https://kanji.press


Languages

Language:JavaScript 79.2%Language:CSS 18.4%Language:HTML 2.5%