├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── assets ├── __anki-persistence.js ├── __bookmark.svg ├── __correct.mp3 ├── __correct.svg ├── __d3.js ├── __echarts.min.js ├── __error.svg ├── __expand_all.svg ├── __eye.svg ├── __fold_toggle.svg ├── __gear.svg ├── __goto_origin.svg ├── __goto_parent.svg ├── __goto_root.svg ├── __markmap_lib.js ├── __markmap_view.js ├── __mubu.css ├── __next.svg ├── __noeye.svg ├── __prev.svg ├── __warning.png └── __wrong.mp3 ├── controller.py ├── edit.py ├── manifest.json ├── meta.json ├── resources ├── horizontal-fill-blank.svg ├── modify.svg ├── reset.svg └── save.svg └── templates ├── Kevin Choice Card ├── back.html ├── front.html ├── meta.json └── style.css ├── Kevin Image Cloze ├── back.html ├── front.html ├── meta.json └── style.css ├── Kevin Image QA Card ├── back.html ├── front.html ├── meta.json └── style.css ├── Kevin Mindmap Card ├── back.html ├── front.html ├── meta.json └── style.css ├── Kevin Reader Card ├── back.html ├── front.html ├── meta.json └── style.css ├── Kevin Text Cloze ├── back.html ├── front.html ├── meta.json └── style.css ├── Kevin Text QA Card ├── back.html ├── front.html ├── meta.json └── style.css ├── Kevin Word Card ├── back.html ├── front.html ├── meta.json └── style.css └── Kevin Zotero Card ├── back.html ├── front.html ├── meta.json └── style.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/__init__.py -------------------------------------------------------------------------------- /assets/__anki-persistence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/assets/__anki-persistence.js -------------------------------------------------------------------------------- /assets/__bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/assets/__bookmark.svg -------------------------------------------------------------------------------- /assets/__correct.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/assets/__correct.mp3 -------------------------------------------------------------------------------- /assets/__correct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/assets/__correct.svg -------------------------------------------------------------------------------- /assets/__d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/assets/__d3.js -------------------------------------------------------------------------------- /assets/__echarts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/assets/__echarts.min.js -------------------------------------------------------------------------------- /assets/__error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/assets/__error.svg -------------------------------------------------------------------------------- /assets/__expand_all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/assets/__expand_all.svg -------------------------------------------------------------------------------- /assets/__eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/assets/__eye.svg -------------------------------------------------------------------------------- /assets/__fold_toggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/assets/__fold_toggle.svg -------------------------------------------------------------------------------- /assets/__gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/assets/__gear.svg -------------------------------------------------------------------------------- /assets/__goto_origin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/assets/__goto_origin.svg -------------------------------------------------------------------------------- /assets/__goto_parent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/assets/__goto_parent.svg -------------------------------------------------------------------------------- /assets/__goto_root.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/assets/__goto_root.svg -------------------------------------------------------------------------------- /assets/__markmap_lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/assets/__markmap_lib.js -------------------------------------------------------------------------------- /assets/__markmap_view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/assets/__markmap_view.js -------------------------------------------------------------------------------- /assets/__mubu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/assets/__mubu.css -------------------------------------------------------------------------------- /assets/__next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/assets/__next.svg -------------------------------------------------------------------------------- /assets/__noeye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/assets/__noeye.svg -------------------------------------------------------------------------------- /assets/__prev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/assets/__prev.svg -------------------------------------------------------------------------------- /assets/__warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/assets/__warning.png -------------------------------------------------------------------------------- /assets/__wrong.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/assets/__wrong.mp3 -------------------------------------------------------------------------------- /controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/controller.py -------------------------------------------------------------------------------- /edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/edit.py -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/manifest.json -------------------------------------------------------------------------------- /meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/meta.json -------------------------------------------------------------------------------- /resources/horizontal-fill-blank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/resources/horizontal-fill-blank.svg -------------------------------------------------------------------------------- /resources/modify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/resources/modify.svg -------------------------------------------------------------------------------- /resources/reset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/resources/reset.svg -------------------------------------------------------------------------------- /resources/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/resources/save.svg -------------------------------------------------------------------------------- /templates/Kevin Choice Card/back.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Choice Card/back.html -------------------------------------------------------------------------------- /templates/Kevin Choice Card/front.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Choice Card/front.html -------------------------------------------------------------------------------- /templates/Kevin Choice Card/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Choice Card/meta.json -------------------------------------------------------------------------------- /templates/Kevin Choice Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Choice Card/style.css -------------------------------------------------------------------------------- /templates/Kevin Image Cloze/back.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Image Cloze/back.html -------------------------------------------------------------------------------- /templates/Kevin Image Cloze/front.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Image Cloze/front.html -------------------------------------------------------------------------------- /templates/Kevin Image Cloze/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Image Cloze/meta.json -------------------------------------------------------------------------------- /templates/Kevin Image Cloze/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Image Cloze/style.css -------------------------------------------------------------------------------- /templates/Kevin Image QA Card/back.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Image QA Card/back.html -------------------------------------------------------------------------------- /templates/Kevin Image QA Card/front.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Image QA Card/front.html -------------------------------------------------------------------------------- /templates/Kevin Image QA Card/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Image QA Card/meta.json -------------------------------------------------------------------------------- /templates/Kevin Image QA Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Image QA Card/style.css -------------------------------------------------------------------------------- /templates/Kevin Mindmap Card/back.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Mindmap Card/back.html -------------------------------------------------------------------------------- /templates/Kevin Mindmap Card/front.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Mindmap Card/front.html -------------------------------------------------------------------------------- /templates/Kevin Mindmap Card/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Mindmap Card/meta.json -------------------------------------------------------------------------------- /templates/Kevin Mindmap Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Mindmap Card/style.css -------------------------------------------------------------------------------- /templates/Kevin Reader Card/back.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Reader Card/back.html -------------------------------------------------------------------------------- /templates/Kevin Reader Card/front.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Reader Card/front.html -------------------------------------------------------------------------------- /templates/Kevin Reader Card/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Reader Card/meta.json -------------------------------------------------------------------------------- /templates/Kevin Reader Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Reader Card/style.css -------------------------------------------------------------------------------- /templates/Kevin Text Cloze/back.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Text Cloze/back.html -------------------------------------------------------------------------------- /templates/Kevin Text Cloze/front.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Text Cloze/front.html -------------------------------------------------------------------------------- /templates/Kevin Text Cloze/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Text Cloze/meta.json -------------------------------------------------------------------------------- /templates/Kevin Text Cloze/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Text Cloze/style.css -------------------------------------------------------------------------------- /templates/Kevin Text QA Card/back.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Text QA Card/back.html -------------------------------------------------------------------------------- /templates/Kevin Text QA Card/front.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Text QA Card/front.html -------------------------------------------------------------------------------- /templates/Kevin Text QA Card/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Text QA Card/meta.json -------------------------------------------------------------------------------- /templates/Kevin Text QA Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Text QA Card/style.css -------------------------------------------------------------------------------- /templates/Kevin Word Card/back.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Word Card/back.html -------------------------------------------------------------------------------- /templates/Kevin Word Card/front.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Word Card/front.html -------------------------------------------------------------------------------- /templates/Kevin Word Card/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Word Card/meta.json -------------------------------------------------------------------------------- /templates/Kevin Word Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Word Card/style.css -------------------------------------------------------------------------------- /templates/Kevin Zotero Card/back.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Zotero Card/back.html -------------------------------------------------------------------------------- /templates/Kevin Zotero Card/front.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Zotero Card/front.html -------------------------------------------------------------------------------- /templates/Kevin Zotero Card/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Zotero Card/meta.json -------------------------------------------------------------------------------- /templates/Kevin Zotero Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin2li/Kevin-Anki-Templates/HEAD/templates/Kevin Zotero Card/style.css --------------------------------------------------------------------------------