Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 804 Bytes

README.md

File metadata and controls

29 lines (21 loc) · 804 Bytes

anki-addon-glossary

Export an Anki desk as an Html Glossary

It is based on https://ankiweb.net/shared/info/2751403243

Install

copy the py file into Anki's add-on folder and restart Anki, or use the Anki's tools, Addons Browse & install menu. See here: https://ankiweb.net/shared/info/156019013

Usage

  1. File menu, Export. Choose Export deck as Html Glossary and choose the desk
  2. Save the file into Anki's media folder (on my Linux, this is Documents\Anki\User 1\collection.media)
  3. Open the file in a browser

Customization of the output

create a custom.css in the directory of the htm file.

For example, if you want that the first column will be the question and the second be the answer, use this custom.css file:

.Question{
    float: left;
 
}
.Answer{
    float: left;
 
}