├── toc.post ├── .gitignore ├── beta.txt ├── manual.conf ├── changes.txt ├── addons.txt ├── am-manual.txt ├── AnkiMobile.txt ├── appbadge.png ├── manual.ir.pdf ├── knownissues21.txt ├── img ├── convergence_question.png ├── convergence_question.fr.png ├── convergence_question_2.png └── convergence_question_2.fr.png ├── LICENSE ├── manual.txt ├── style.inc ├── help.txt ├── Makefile ├── asciidoc.conf ├── toc.pre ├── redir.js └── manual.fr.txt /toc.post: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /docs 2 | *.html 3 | *.mako 4 | .idea 5 | -------------------------------------------------------------------------------- /beta.txt: -------------------------------------------------------------------------------- 1 | = Moved = 2 | 3 | Please see https://betas.ankiweb.net 4 | -------------------------------------------------------------------------------- /manual.conf: -------------------------------------------------------------------------------- 1 | [titles] 2 | underlines="__","==","--","~~","^^" 3 | -------------------------------------------------------------------------------- /changes.txt: -------------------------------------------------------------------------------- 1 | = Moved = 2 | 3 | Please see https://changes.ankiweb.net 4 | -------------------------------------------------------------------------------- /addons.txt: -------------------------------------------------------------------------------- 1 | = Moved = 2 | 3 | Please see https://addon-docs.ankiweb.net 4 | -------------------------------------------------------------------------------- /am-manual.txt: -------------------------------------------------------------------------------- 1 | = Moved = 2 | 3 | Please see https://docs.ankimobile.net/ 4 | -------------------------------------------------------------------------------- /AnkiMobile.txt: -------------------------------------------------------------------------------- 1 | = Moved = 2 | 3 | Please see https://docs.ankimobile.net/ 4 | -------------------------------------------------------------------------------- /appbadge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankitects/anki-docs/HEAD/appbadge.png -------------------------------------------------------------------------------- /manual.ir.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankitects/anki-docs/HEAD/manual.ir.pdf -------------------------------------------------------------------------------- /knownissues21.txt: -------------------------------------------------------------------------------- 1 | = Moved = 2 | 3 | Please see https://changes.ankiweb.net/#/known-issues 4 | -------------------------------------------------------------------------------- /img/convergence_question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankitects/anki-docs/HEAD/img/convergence_question.png -------------------------------------------------------------------------------- /img/convergence_question.fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankitects/anki-docs/HEAD/img/convergence_question.fr.png -------------------------------------------------------------------------------- /img/convergence_question_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankitects/anki-docs/HEAD/img/convergence_question_2.png -------------------------------------------------------------------------------- /img/convergence_question_2.fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankitects/anki-docs/HEAD/img/convergence_question_2.fr.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The content here is distributed under the CC BY-SA license: 2 | 3 | https://creativecommons.org/licenses/by-sa/4.0/ 4 | -------------------------------------------------------------------------------- /manual.txt: -------------------------------------------------------------------------------- 1 | = Moved = 2 | 3 | Please see https://docs.ankiweb.net 4 | 5 | +++++ 6 | 7 | +++++ 8 | -------------------------------------------------------------------------------- /style.inc: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /help.txt: -------------------------------------------------------------------------------- 1 | _ Getting Help _ 2 | 3 | [subs="none"] 4 | ++++++++++++++++++++++++++++++ 5 | 8 | ++++++++++++++++++++++++++++++ 9 | 10 | = Before Asking = 11 | 12 | Before asking for help, please have a look in the manual. The top of the 13 | manual provides some links to some short intro videos that address some common 14 | topics. 15 | 16 | * link:/docs/manual.html[User Manual] 17 | * link:/docs/manual.html#_intro_videos[Short Intro Videos] 18 | 19 | If the intro videos do not address your issue, please try searching the manual 20 | with your browser's find command (Ctrl+F, or on a Mac, Command+F). 21 | 22 | [[support]] 23 | = Support & Community Discussion = 24 | 25 | If you were unable to find what you needed in the manual, have a bug report or 26 | a suggestion, please visit the relevant site: 27 | 28 | * https://anki.tenderapp.com/[Computers, AnkiWeb, Apple Devices, Add-Ons and Effective Learning] 29 | * https://ankidroid.org/docs/help.html[Android Devices] 30 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | MAKO := $(patsubst %.txt,%.mako,$(wildcard *.txt)) 2 | CWD = $(shell pwd) 3 | 4 | ifdef appsweb 5 | WEB = ${appsweb} 6 | else 7 | WEB = . 8 | endif 9 | 10 | AMHELP = ../mob/AnkiMobile/Resources/HTML/help.html 11 | TOC_FILES = manual.mako am-manual.mako changes.mako addons.mako \ 12 | am-changes.mako manual.fr.mako manual.pl.mako manual.es.mako \ 13 | addons20.mako manual20.mako knownissues20.mako knownissues21.mako 14 | 15 | all: build 16 | @echo "remember to run 'make commit' to commit changes" 17 | rsync -a img $(WEB)/docs/ 18 | 19 | commit: save build 20 | 21 | save: 22 | -git commit -a -m update && git push 23 | git pull 24 | git push 25 | 26 | build: $(MAKO) 27 | @echo building mako 28 | @rsync -a *.mako *.png *.pdf *.html img redir.js $(WEB)/docs/ 29 | 30 | $(TOC_FILES): TOC := 1 31 | 32 | %.mako: %.txt asciidoc.conf 33 | @echo asciidoc $< 34 | @asciidoc -s -b html5 -o $@ $< 35 | @echo '<%inherit file="/base.inc"/>' > $@.tmp 36 | @cat style.inc >> $@.tmp 37 | @if [ x$(TOC) != x ]; then cat toc.pre >> $@.tmp; fi 38 | @cat $@ >> $@.tmp 39 | @if [ x$(TOC) != x ]; then cat toc.post >> $@.tmp; fi 40 | @mv $@.tmp $@ 41 | 42 | clean: 43 | touch *.txt 44 | -------------------------------------------------------------------------------- /asciidoc.conf: -------------------------------------------------------------------------------- 1 | [titles] 2 | sect0=^_ +(?P
|
21 | {data-uri%}{icons#} {caption}
25 | |
26 |
27 | {title}
28 | |
29 | |
30 |