├── .editorconfig ├── .gitignore ├── .pylintrc ├── README.adoc ├── __init__.py ├── config.json ├── config.md ├── docs ├── tutorial-anki.adoc ├── tutorial-ark.adoc ├── tutorial-assetrefs.adoc ├── tutorial-config-file.adoc ├── tutorial-ids.adoc └── tutorial-pagerefs.adoc ├── example ├── .editorconfig ├── README.adoc ├── computer-science │ └── network-engineering │ │ ├── transport-layer │ │ ├── 1gna7qxj.adoc │ │ ├── 2f6z4esa.adoc │ │ ├── 4q75hek7.adoc │ │ ├── 5et3cjeo.adoc │ │ ├── 8l5yfneg.adoc │ │ ├── README.adoc │ │ ├── a2nxflps.adoc │ │ ├── al8lp5dh.adoc │ │ ├── assets │ │ │ ├── seq-no-analysis-2.png │ │ │ └── seq-no-analysis.png │ │ ├── dy370mzw.adoc │ │ ├── eh2qqepz.adoc │ │ ├── f5wwqdw7.adoc │ │ ├── h5ti79wk.adoc │ │ ├── iz4lq9xa.adoc │ │ ├── kapjfkdg.adoc │ │ ├── ldvx49yf.adoc │ │ ├── ov1sz2lp.adoc │ │ └── owqhm1wx.adoc │ │ └── web-development │ │ ├── 0b7zevwk.adoc │ │ ├── 0q9uzhh4.adoc │ │ ├── 2ru63urh.adoc │ │ ├── 8bv8698j.adoc │ │ ├── README.adoc │ │ ├── assets │ │ ├── 24ea.png │ │ └── ede3.html │ │ └── mzpbsbvy.adoc ├── mathematics │ ├── graph-theory │ │ ├── 1cu5p55p.adoc │ │ ├── 3c0rgutt.adoc │ │ ├── 3culk469.adoc │ │ ├── 6zyqx1p9.adoc │ │ ├── 8xis3kfz.adoc │ │ ├── 9ta4mu5f.adoc │ │ ├── 9xjlrgia.adoc │ │ ├── README-regexes.adoc │ │ ├── README-state.adoc │ │ ├── README.adoc │ │ ├── a31bu7d5.adoc │ │ ├── assets │ │ │ ├── 22e2.jpg │ │ │ ├── 8flv7kwi.hs │ │ │ ├── closure-operator.jpg │ │ │ ├── f92c.jpg │ │ │ ├── kernel-operator.jpg │ │ │ ├── mealymachine.jpg │ │ │ └── mooremachine.jpg │ │ ├── b09fuuwf.adoc │ │ ├── behl4q6l.adoc │ │ ├── broqmyva.adoc │ │ ├── bz3tez6y.adoc │ │ ├── c3nyv00b.adoc │ │ ├── casjq5kt.adoc │ │ ├── ii893mwx.adoc │ │ ├── l4n8g70q.adoc │ │ ├── m1fx19k6.adoc │ │ ├── mp8cvjd7.adoc │ │ ├── qe2r4ykg.adoc │ │ ├── qhlt7be4.adoc │ │ ├── qx9ge7b3.adoc │ │ ├── v01nc5fi.adoc │ │ └── zw9hk4no.adoc │ └── group-theory │ │ ├── 8snpjx48.adoc │ │ ├── 9cykei4e.adoc │ │ ├── README.adoc │ │ ├── assets │ │ └── dihedralgroup4.jpg │ │ ├── bfdb0d00.adoc │ │ ├── dd7rj5im.adoc │ │ ├── edq289gr.adoc │ │ ├── gf6bpcd4.adoc │ │ ├── h971cued.adoc │ │ ├── js3lq756.adoc │ │ ├── mxockwkw.adoc │ │ ├── rw4tchfy.adoc │ │ ├── ryypac4g.adoc │ │ └── x7ls6mbw.adoc └── others │ └── linguistics │ ├── 399g2nkc.adoc │ ├── 5hyq1xxn.adoc │ ├── README.adoc │ ├── bidt3dkb.adoc │ ├── fl0t4lhe.adoc │ ├── fmsjvn7p.adoc │ ├── hcbnflj6.adoc │ ├── k0b37mee.adoc │ ├── knn9qe4l.adoc │ ├── lz9lmlye.adoc │ ├── mzfuxgz7.adoc │ ├── n6et2sf5.adoc │ ├── pvtmivok.adoc │ ├── ue2bxsdp.adoc │ └── zwcw1ec1.adoc ├── icons ├── archive.png ├── looks_0.png ├── looks_1.png ├── looks_2.png ├── looks_3.png ├── looks_4.png └── looks_5.png ├── lib ├── context.py ├── identifier.py ├── main.py ├── parser.py ├── pyperclip │ ├── __init__.py │ └── __main__.py ├── srs_connection.py └── util.py ├── test.sh ├── tests ├── foo-archive │ └── math │ │ ├── README.md │ │ ├── graphs │ │ └── README.adoc │ │ └── groups │ │ └── README.adoc └── foo-config.json └── zip.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/.pylintrc -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/README.adoc -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/__init__.py -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/config.json -------------------------------------------------------------------------------- /config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/config.md -------------------------------------------------------------------------------- /docs/tutorial-anki.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/docs/tutorial-anki.adoc -------------------------------------------------------------------------------- /docs/tutorial-ark.adoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/tutorial-assetrefs.adoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/tutorial-config-file.adoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/tutorial-ids.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/docs/tutorial-ids.adoc -------------------------------------------------------------------------------- /docs/tutorial-pagerefs.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/docs/tutorial-pagerefs.adoc -------------------------------------------------------------------------------- /example/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/.editorconfig -------------------------------------------------------------------------------- /example/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/README.adoc -------------------------------------------------------------------------------- /example/computer-science/network-engineering/transport-layer/1gna7qxj.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/computer-science/network-engineering/transport-layer/1gna7qxj.adoc -------------------------------------------------------------------------------- /example/computer-science/network-engineering/transport-layer/2f6z4esa.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/computer-science/network-engineering/transport-layer/2f6z4esa.adoc -------------------------------------------------------------------------------- /example/computer-science/network-engineering/transport-layer/4q75hek7.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/computer-science/network-engineering/transport-layer/4q75hek7.adoc -------------------------------------------------------------------------------- /example/computer-science/network-engineering/transport-layer/5et3cjeo.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/computer-science/network-engineering/transport-layer/5et3cjeo.adoc -------------------------------------------------------------------------------- /example/computer-science/network-engineering/transport-layer/8l5yfneg.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/computer-science/network-engineering/transport-layer/8l5yfneg.adoc -------------------------------------------------------------------------------- /example/computer-science/network-engineering/transport-layer/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/computer-science/network-engineering/transport-layer/README.adoc -------------------------------------------------------------------------------- /example/computer-science/network-engineering/transport-layer/a2nxflps.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/computer-science/network-engineering/transport-layer/a2nxflps.adoc -------------------------------------------------------------------------------- /example/computer-science/network-engineering/transport-layer/al8lp5dh.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/computer-science/network-engineering/transport-layer/al8lp5dh.adoc -------------------------------------------------------------------------------- /example/computer-science/network-engineering/transport-layer/assets/seq-no-analysis-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/computer-science/network-engineering/transport-layer/assets/seq-no-analysis-2.png -------------------------------------------------------------------------------- /example/computer-science/network-engineering/transport-layer/assets/seq-no-analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/computer-science/network-engineering/transport-layer/assets/seq-no-analysis.png -------------------------------------------------------------------------------- /example/computer-science/network-engineering/transport-layer/dy370mzw.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/computer-science/network-engineering/transport-layer/dy370mzw.adoc -------------------------------------------------------------------------------- /example/computer-science/network-engineering/transport-layer/eh2qqepz.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/computer-science/network-engineering/transport-layer/eh2qqepz.adoc -------------------------------------------------------------------------------- /example/computer-science/network-engineering/transport-layer/f5wwqdw7.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/computer-science/network-engineering/transport-layer/f5wwqdw7.adoc -------------------------------------------------------------------------------- /example/computer-science/network-engineering/transport-layer/h5ti79wk.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/computer-science/network-engineering/transport-layer/h5ti79wk.adoc -------------------------------------------------------------------------------- /example/computer-science/network-engineering/transport-layer/iz4lq9xa.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/computer-science/network-engineering/transport-layer/iz4lq9xa.adoc -------------------------------------------------------------------------------- /example/computer-science/network-engineering/transport-layer/kapjfkdg.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/computer-science/network-engineering/transport-layer/kapjfkdg.adoc -------------------------------------------------------------------------------- /example/computer-science/network-engineering/transport-layer/ldvx49yf.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/computer-science/network-engineering/transport-layer/ldvx49yf.adoc -------------------------------------------------------------------------------- /example/computer-science/network-engineering/transport-layer/ov1sz2lp.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/computer-science/network-engineering/transport-layer/ov1sz2lp.adoc -------------------------------------------------------------------------------- /example/computer-science/network-engineering/transport-layer/owqhm1wx.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/computer-science/network-engineering/transport-layer/owqhm1wx.adoc -------------------------------------------------------------------------------- /example/computer-science/network-engineering/web-development/0b7zevwk.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/computer-science/network-engineering/web-development/0b7zevwk.adoc -------------------------------------------------------------------------------- /example/computer-science/network-engineering/web-development/0q9uzhh4.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/computer-science/network-engineering/web-development/0q9uzhh4.adoc -------------------------------------------------------------------------------- /example/computer-science/network-engineering/web-development/2ru63urh.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/computer-science/network-engineering/web-development/2ru63urh.adoc -------------------------------------------------------------------------------- /example/computer-science/network-engineering/web-development/8bv8698j.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/computer-science/network-engineering/web-development/8bv8698j.adoc -------------------------------------------------------------------------------- /example/computer-science/network-engineering/web-development/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/computer-science/network-engineering/web-development/README.adoc -------------------------------------------------------------------------------- /example/computer-science/network-engineering/web-development/assets/24ea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/computer-science/network-engineering/web-development/assets/24ea.png -------------------------------------------------------------------------------- /example/computer-science/network-engineering/web-development/assets/ede3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/computer-science/network-engineering/web-development/assets/ede3.html -------------------------------------------------------------------------------- /example/computer-science/network-engineering/web-development/mzpbsbvy.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/computer-science/network-engineering/web-development/mzpbsbvy.adoc -------------------------------------------------------------------------------- /example/mathematics/graph-theory/1cu5p55p.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/1cu5p55p.adoc -------------------------------------------------------------------------------- /example/mathematics/graph-theory/3c0rgutt.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/3c0rgutt.adoc -------------------------------------------------------------------------------- /example/mathematics/graph-theory/3culk469.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/3culk469.adoc -------------------------------------------------------------------------------- /example/mathematics/graph-theory/6zyqx1p9.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/6zyqx1p9.adoc -------------------------------------------------------------------------------- /example/mathematics/graph-theory/8xis3kfz.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/8xis3kfz.adoc -------------------------------------------------------------------------------- /example/mathematics/graph-theory/9ta4mu5f.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/9ta4mu5f.adoc -------------------------------------------------------------------------------- /example/mathematics/graph-theory/9xjlrgia.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/9xjlrgia.adoc -------------------------------------------------------------------------------- /example/mathematics/graph-theory/README-regexes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/README-regexes.adoc -------------------------------------------------------------------------------- /example/mathematics/graph-theory/README-state.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/README-state.adoc -------------------------------------------------------------------------------- /example/mathematics/graph-theory/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/README.adoc -------------------------------------------------------------------------------- /example/mathematics/graph-theory/a31bu7d5.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/a31bu7d5.adoc -------------------------------------------------------------------------------- /example/mathematics/graph-theory/assets/22e2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/assets/22e2.jpg -------------------------------------------------------------------------------- /example/mathematics/graph-theory/assets/8flv7kwi.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/assets/8flv7kwi.hs -------------------------------------------------------------------------------- /example/mathematics/graph-theory/assets/closure-operator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/assets/closure-operator.jpg -------------------------------------------------------------------------------- /example/mathematics/graph-theory/assets/f92c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/assets/f92c.jpg -------------------------------------------------------------------------------- /example/mathematics/graph-theory/assets/kernel-operator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/assets/kernel-operator.jpg -------------------------------------------------------------------------------- /example/mathematics/graph-theory/assets/mealymachine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/assets/mealymachine.jpg -------------------------------------------------------------------------------- /example/mathematics/graph-theory/assets/mooremachine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/assets/mooremachine.jpg -------------------------------------------------------------------------------- /example/mathematics/graph-theory/b09fuuwf.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/b09fuuwf.adoc -------------------------------------------------------------------------------- /example/mathematics/graph-theory/behl4q6l.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/behl4q6l.adoc -------------------------------------------------------------------------------- /example/mathematics/graph-theory/broqmyva.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/broqmyva.adoc -------------------------------------------------------------------------------- /example/mathematics/graph-theory/bz3tez6y.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/bz3tez6y.adoc -------------------------------------------------------------------------------- /example/mathematics/graph-theory/c3nyv00b.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/c3nyv00b.adoc -------------------------------------------------------------------------------- /example/mathematics/graph-theory/casjq5kt.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/casjq5kt.adoc -------------------------------------------------------------------------------- /example/mathematics/graph-theory/ii893mwx.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/ii893mwx.adoc -------------------------------------------------------------------------------- /example/mathematics/graph-theory/l4n8g70q.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/l4n8g70q.adoc -------------------------------------------------------------------------------- /example/mathematics/graph-theory/m1fx19k6.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/m1fx19k6.adoc -------------------------------------------------------------------------------- /example/mathematics/graph-theory/mp8cvjd7.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/mp8cvjd7.adoc -------------------------------------------------------------------------------- /example/mathematics/graph-theory/qe2r4ykg.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/qe2r4ykg.adoc -------------------------------------------------------------------------------- /example/mathematics/graph-theory/qhlt7be4.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/qhlt7be4.adoc -------------------------------------------------------------------------------- /example/mathematics/graph-theory/qx9ge7b3.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/qx9ge7b3.adoc -------------------------------------------------------------------------------- /example/mathematics/graph-theory/v01nc5fi.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/v01nc5fi.adoc -------------------------------------------------------------------------------- /example/mathematics/graph-theory/zw9hk4no.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/graph-theory/zw9hk4no.adoc -------------------------------------------------------------------------------- /example/mathematics/group-theory/8snpjx48.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/group-theory/8snpjx48.adoc -------------------------------------------------------------------------------- /example/mathematics/group-theory/9cykei4e.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/group-theory/9cykei4e.adoc -------------------------------------------------------------------------------- /example/mathematics/group-theory/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/group-theory/README.adoc -------------------------------------------------------------------------------- /example/mathematics/group-theory/assets/dihedralgroup4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/group-theory/assets/dihedralgroup4.jpg -------------------------------------------------------------------------------- /example/mathematics/group-theory/bfdb0d00.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/group-theory/bfdb0d00.adoc -------------------------------------------------------------------------------- /example/mathematics/group-theory/dd7rj5im.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/group-theory/dd7rj5im.adoc -------------------------------------------------------------------------------- /example/mathematics/group-theory/edq289gr.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/group-theory/edq289gr.adoc -------------------------------------------------------------------------------- /example/mathematics/group-theory/gf6bpcd4.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/group-theory/gf6bpcd4.adoc -------------------------------------------------------------------------------- /example/mathematics/group-theory/h971cued.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/group-theory/h971cued.adoc -------------------------------------------------------------------------------- /example/mathematics/group-theory/js3lq756.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/group-theory/js3lq756.adoc -------------------------------------------------------------------------------- /example/mathematics/group-theory/mxockwkw.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/group-theory/mxockwkw.adoc -------------------------------------------------------------------------------- /example/mathematics/group-theory/rw4tchfy.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/group-theory/rw4tchfy.adoc -------------------------------------------------------------------------------- /example/mathematics/group-theory/ryypac4g.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/group-theory/ryypac4g.adoc -------------------------------------------------------------------------------- /example/mathematics/group-theory/x7ls6mbw.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/mathematics/group-theory/x7ls6mbw.adoc -------------------------------------------------------------------------------- /example/others/linguistics/399g2nkc.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/others/linguistics/399g2nkc.adoc -------------------------------------------------------------------------------- /example/others/linguistics/5hyq1xxn.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/others/linguistics/5hyq1xxn.adoc -------------------------------------------------------------------------------- /example/others/linguistics/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/others/linguistics/README.adoc -------------------------------------------------------------------------------- /example/others/linguistics/bidt3dkb.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/others/linguistics/bidt3dkb.adoc -------------------------------------------------------------------------------- /example/others/linguistics/fl0t4lhe.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/others/linguistics/fl0t4lhe.adoc -------------------------------------------------------------------------------- /example/others/linguistics/fmsjvn7p.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/others/linguistics/fmsjvn7p.adoc -------------------------------------------------------------------------------- /example/others/linguistics/hcbnflj6.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/others/linguistics/hcbnflj6.adoc -------------------------------------------------------------------------------- /example/others/linguistics/k0b37mee.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/others/linguistics/k0b37mee.adoc -------------------------------------------------------------------------------- /example/others/linguistics/knn9qe4l.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/others/linguistics/knn9qe4l.adoc -------------------------------------------------------------------------------- /example/others/linguistics/lz9lmlye.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/others/linguistics/lz9lmlye.adoc -------------------------------------------------------------------------------- /example/others/linguistics/mzfuxgz7.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/others/linguistics/mzfuxgz7.adoc -------------------------------------------------------------------------------- /example/others/linguistics/n6et2sf5.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/others/linguistics/n6et2sf5.adoc -------------------------------------------------------------------------------- /example/others/linguistics/pvtmivok.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/others/linguistics/pvtmivok.adoc -------------------------------------------------------------------------------- /example/others/linguistics/ue2bxsdp.adoc: -------------------------------------------------------------------------------- 1 | = Yes and no 2 | 3 | // TODO 4 | -------------------------------------------------------------------------------- /example/others/linguistics/zwcw1ec1.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/example/others/linguistics/zwcw1ec1.adoc -------------------------------------------------------------------------------- /icons/archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/icons/archive.png -------------------------------------------------------------------------------- /icons/looks_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/icons/looks_0.png -------------------------------------------------------------------------------- /icons/looks_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/icons/looks_1.png -------------------------------------------------------------------------------- /icons/looks_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/icons/looks_2.png -------------------------------------------------------------------------------- /icons/looks_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/icons/looks_3.png -------------------------------------------------------------------------------- /icons/looks_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/icons/looks_4.png -------------------------------------------------------------------------------- /icons/looks_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/icons/looks_5.png -------------------------------------------------------------------------------- /lib/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/lib/context.py -------------------------------------------------------------------------------- /lib/identifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/lib/identifier.py -------------------------------------------------------------------------------- /lib/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/lib/main.py -------------------------------------------------------------------------------- /lib/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/lib/parser.py -------------------------------------------------------------------------------- /lib/pyperclip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/lib/pyperclip/__init__.py -------------------------------------------------------------------------------- /lib/pyperclip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/lib/pyperclip/__main__.py -------------------------------------------------------------------------------- /lib/srs_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/lib/srs_connection.py -------------------------------------------------------------------------------- /lib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/lib/util.py -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | python -m unittest discover -v tests 4 | -------------------------------------------------------------------------------- /tests/foo-archive/math/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/foo-archive/math/graphs/README.adoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/foo-archive/math/groups/README.adoc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/foo-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/tests/foo-config.json -------------------------------------------------------------------------------- /zip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgiesel/anki-plus-archive/HEAD/zip.sh --------------------------------------------------------------------------------