Home
Softono

Anki Md

Open source MIT Go
33
Stars
1
Forks
0
Issues
1
Watchers
2 years
Last Commit

 About Anki Md

πŸ“š A markdown to anki flash cards converter

Platforms

Web Self-hosted

Languages

Go

Links

Need Help Installing Anki Md?

We provide expert installation service for this software. Our team will install, configure, and secure Anki Md on your server. plans start at just $30.

πŸ“š anki-md

A markdown to anki flash cards converter

πŸ“¦ Installation

Binary installation

Download a compatible binary for your system. For convenience, place anki-md in a directory where you can access it from the command line.

Via Go

$ go install github.com/jpbruinsslot/anki-md

πŸ’» Usage

Command line usage

NAME:
    anki-md - markdown to anki flash cards converter

USAGE:
    anki-md -i [input-file] -o [output-file]

EXAMPLES:

    $ anki-md -i deck.md -o deck.csv

    $ cat deck.md | anki-md -o deck.csv

    $ anki-md -i deck.md > test.csv

VERSION:
    0.1.0

WEBSITE:
    https://github.com/jpbruinsslot/anki-md

GLOBAL OPTIONS:
    -i, -input [input-file]     input file
    -o, -output [output-file]   output file
    -html                       convert field content to html
    -h, -help

Deck creation

Create your deck, cards and fields as follows:

%% Who wrote the book "The C Programming Language"?

%% Brian W. Kernighan and Dennis M. Ritchie

---

%% Create a hello world program

%%

``
#include <stdio.h>

int main()
{
    printf("hello, world\n");
}
``

identifier explanation
%% represents a field, you can use multiple field per card
--- represent a card