Export an Anki desk as an Html Glossary
It is based on https://ankiweb.net/shared/info/2751403243
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
- File menu, Export. Choose Export deck as Html Glossary and choose the desk
- Save the file into Anki's media folder (on my Linux, this is Documents\Anki\User 1\collection.media)
- Open the file in a browser
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;
}