├── .gitignore ├── LICENSE ├── Makefile ├── Readme.md ├── ankidown ├── __init__.py ├── config.json ├── config.md ├── exporter.py ├── importer.py ├── note.py ├── notes.py ├── template.py ├── utils.py └── vendor │ ├── __init__.py │ ├── markdownify.py │ └── parse.py ├── assets ├── ankidown-menu.png └── example.gif ├── examples ├── templates │ ├── condition.md │ ├── person.md │ └── syndrome.md └── tests │ ├── marfans.md │ ├── multiples.md │ ├── people.md │ └── pneumothorax.md ├── notes.md ├── todo.md └── ui ├── exporter.ui └── importer.ui /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glfharris/ankidown/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glfharris/ankidown/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glfharris/ankidown/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glfharris/ankidown/HEAD/Readme.md -------------------------------------------------------------------------------- /ankidown/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glfharris/ankidown/HEAD/ankidown/__init__.py -------------------------------------------------------------------------------- /ankidown/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glfharris/ankidown/HEAD/ankidown/config.json -------------------------------------------------------------------------------- /ankidown/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glfharris/ankidown/HEAD/ankidown/config.md -------------------------------------------------------------------------------- /ankidown/exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glfharris/ankidown/HEAD/ankidown/exporter.py -------------------------------------------------------------------------------- /ankidown/importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glfharris/ankidown/HEAD/ankidown/importer.py -------------------------------------------------------------------------------- /ankidown/note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glfharris/ankidown/HEAD/ankidown/note.py -------------------------------------------------------------------------------- /ankidown/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glfharris/ankidown/HEAD/ankidown/notes.py -------------------------------------------------------------------------------- /ankidown/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glfharris/ankidown/HEAD/ankidown/template.py -------------------------------------------------------------------------------- /ankidown/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glfharris/ankidown/HEAD/ankidown/utils.py -------------------------------------------------------------------------------- /ankidown/vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ankidown/vendor/markdownify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glfharris/ankidown/HEAD/ankidown/vendor/markdownify.py -------------------------------------------------------------------------------- /ankidown/vendor/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glfharris/ankidown/HEAD/ankidown/vendor/parse.py -------------------------------------------------------------------------------- /assets/ankidown-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glfharris/ankidown/HEAD/assets/ankidown-menu.png -------------------------------------------------------------------------------- /assets/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glfharris/ankidown/HEAD/assets/example.gif -------------------------------------------------------------------------------- /examples/templates/condition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glfharris/ankidown/HEAD/examples/templates/condition.md -------------------------------------------------------------------------------- /examples/templates/person.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glfharris/ankidown/HEAD/examples/templates/person.md -------------------------------------------------------------------------------- /examples/templates/syndrome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glfharris/ankidown/HEAD/examples/templates/syndrome.md -------------------------------------------------------------------------------- /examples/tests/marfans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glfharris/ankidown/HEAD/examples/tests/marfans.md -------------------------------------------------------------------------------- /examples/tests/multiples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glfharris/ankidown/HEAD/examples/tests/multiples.md -------------------------------------------------------------------------------- /examples/tests/people.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glfharris/ankidown/HEAD/examples/tests/people.md -------------------------------------------------------------------------------- /examples/tests/pneumothorax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glfharris/ankidown/HEAD/examples/tests/pneumothorax.md -------------------------------------------------------------------------------- /notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glfharris/ankidown/HEAD/notes.md -------------------------------------------------------------------------------- /todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glfharris/ankidown/HEAD/todo.md -------------------------------------------------------------------------------- /ui/exporter.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glfharris/ankidown/HEAD/ui/exporter.ui -------------------------------------------------------------------------------- /ui/importer.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glfharris/ankidown/HEAD/ui/importer.ui --------------------------------------------------------------------------------