Problem: If I import a .txt
file with a #deck
header, then imported cards whose IDs (=first columns) match cards in other decks, update the cards in those decks (and do not create new cards in the specified deck).
Potential solutions:
- Manually: Match scope = Notetype and deck
- Downside: Must be activated manually each time.
- Upside: simple
- File header: use
#deck column
and add an additional column.- Would this work?
- Upside: Importers don’t have to remember to change the match scope.
- Downside: makes files bigger
- File header
#columns:DeckPlusFront;Front;Back
- I qualify the ID (=
Front
) by putting the deck’s name in front of it. - Would that work automatically without the user having to intervene manually? In other words: Would
DeckPlusFront
be used for duplicate checking andFront
as the front of each card – automatically?
- I qualify the ID (=
Would it make sense for Anki to support a file header #match scope
?