I have a .csv file containing my vocabulary list that I import into an Anki deck. The .csv file has the following formatting for each row:
back_korean,front_english
For example:
어휘,vocabulary
I keep studying and expanding my vocabulary list, thus, my .csv file grows. After I expand the .csv file, I want to reimport it to my Anki deck.
I want to update the existing notes when the first field matches, however, I want to accept new synonyms.
For example, if my csv file now has fields:
어휘,vocabulary
단어,vocabulary
I would like both cards to be present in the set. Anki needs to discard re-importing the first one, since it already was added, and include the second one, as it is new.
I don’t see how I can instruct Anki to do this, I would think some sort of third field would be needed for the import, for example, counting the row of the line in the .csv file, so that it can refer to that ID and decide whether an already existing note needs to be updated or whether a new note needs to be created.
How can I achieve this? Is there any plugin for this?