Related flashcards from decks appear below the answer of the current flashcard.
Use text in BOLD to highlight keywords to search for.
UPDATED FOR ANKI 2.1.49
Latest update:
- Added the deck name + last modified date for the card so you can make sure the information on the related card is uptodate to your standards.
Previous update:
- Improved card filtering immensely.
Known issues: (no time to fix for now)
- Filtering cards in the “filter search bar” is case insensitive for accentuation. Have no time to fix this for now but will eventually improve the filtering of related cards.
Reviews (4)
👍 2024-02-25
Thank you.Would be cool if one could choose to show specific decks only.
👍 2023-05-31
Great idea.
I’ve been looking at the code and I think this part can be improved:
for keyword in keywords:
if checkIfValidKeyword(keyword):
cards_ids = list(mw.col.findCards(keyword))
To this:
keyword_query = ’ OR ‘.join(f’“{keyword}”’ for keyword in keywords)
cards_ids = list(mw.col.findCards(f’({keyword_query})’))
That way you’re making only 1 query per card instead of 1 for each keyword. Also the list(set(list())) operation isn’t needed anymore.
Also you can us
👍 2022-05-01
Working excellent! Would be cool if one could choose to show specific fields only. For example, for sentence mining. So one doesn’t have the whole note, and just a field for reference. Comment from author before post was edited Hey there :) try to use bold (CTRL + B) on words in your cards. It will search similar cards with those words when you answer your card. I hope this helps!
👍 2019-09-11
i think This is one of the most important Function to remember lots of vocabulary
but… i don`t know how this works
anyone?? Comment from author Hey there :) try to use bold (CTRL + B) on words in your cards. It will search similar cards with those words when you answer your card. I hope this helps!