A web-based tool to export KAnki vocabulary to Anki format (.apkg files).
- Open
https://kankitoanki.vercel.appin your web browser - Copy the content of your
kanki_config.jsfile - Paste it into the textarea on the converter page
- Click "Parse Config" to validate your configuration
- Click "Export to Anki (.apkg)" to download the Anki package
- Import the downloaded
.apkgfile into Anki
Make sure your kanki_config.js file contains both KANKI_CONFIG and VOCABULARY variables:
var KANKI_CONFIG = {
language: 'Japanese',
levels: ['N5', 'N4', 'N3', 'N2', 'N1']
};
var VOCABULARY = {
N5: [
{ expression: 'こんにちは', meaning: 'Hello', reading: 'konnichiwa' },
{ expression: 'ありがとう', meaning: 'Thank you', reading: 'arigatou' }
],
N4: [
{ expression: '勉強', meaning: 'Study', reading: 'benkyou' },
{ expression: '学校', meaning: 'School', reading: 'gakkou' }
]
};- Open the converter: Open
https://kankitoanki.vercel.appin any modern web browser - Paste configuration: Copy your entire
kanki_config.jscontent and paste it into the textarea - Parse configuration: Click "Parse Config" to validate and load your vocabulary
- Review statistics: Check the word count, level count, and language information
- Export to Anki: Click "Export to Anki (.apkg)" to download the package
- Open Anki: Launch Anki desktop application
- Import deck: Go to
File → Importand select your downloaded.apkgfile - Review import: Anki will show you the import summary
- Start studying: Your KAnki vocabulary is now available in Anki!
Each vocabulary entry is converted to an Anki card with the following format:
Expression (Reading)
Meaning
Level: [KAnki Level]
Front: こんにちは (konnichiwa)
Back: Hello
Level: N5