This is a question about @sobjornstad’s fantastic plugin TiddlyRemember.
All my TiddlyRemember flashcards are generated dynamically from individual tiddlers, as described in the TiddlyRemember docs.
Specifically all my flashcards are ultimately synced from a single tiddler called $:/flashcards
containing the following:
<$list filter="[tag[Flashcard]]">
<$macrocall $name=rememberq id={{!!created}} question={{!!question}} answer={{!!answer}} reference={{!!created}} />
</$list>
The issue that I’ve run into is that I cannot sync tags from my individual flashcard tiddlers to Anki because TiddlyRemember’s mechanism for syncing tags only considers the tiddler that contains the rememberq
macro (in my case $:/flashcards
), not the tiddler who’s content is used to generate the flashcard (in my case the individual tiddlers with the tag Flashcard
).
Is there any workaround here that would enable me to sync the tags that I’ve added to my individual Flashcard
tiddlers?