Hi, I’m relatively new so this is a very basic question.
Basically I have a deck full of basic reversed cards, on anki desktop.
I would like to copy and paste into a text file, whatever is on side 1 one of every card in my deck.
Just as a clean, human readable todo list so i can tick them off (for translating…).
Perhaps if it won’t overcomplicate things insert a little string inbetween each card, something like
“. \n TODO:”
or something idk.
Just looking for the simplist soloution to do this the fastest, any advice welcome
You can export your notes as plain text, and edit that into whatever form you like. Exporting - Anki Manual
1 Like
I just tried doing this myself and it’s relatively straightforward.
- Export deck with the
Card format: Cards in Plain Text (.txt)
- Uncheck
Include HTML and media references
- The exported file is Tab delimited. You can open the file with a spreadsheet program like Excel/Google Sheets/LibreOffice Calc, set the import delimiter to
Tab
. You can probably manage it from there.
optional: if you know regex, you can just do a simple lookup of text beyond a tab delimiter \t.*$
.
1 Like
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.