My problem will probably only make sense to someone familiar with TiddlyRemember, but for those that don’t know TiddlyRemember is a fantastic plugin that allows you to create flashcards with a rememberq
macro, and then syncs all instances of that macro to the flashcard program Anki.
I have a bunch of tiddlers that look like this:
title: WikiText
tags: Concept
definition: The markup language for TiddlyWiki
I can dynamically generate flashcards that test me on the definitions of concepts by creating a GenerateFlashcards
tiddler with the following content:
<$list filter="[tag[Concept]">
<$macrocall $name=rememberq id={{!!created}} question={{!!title}} answer={{!!definition}} />
</$list>
This is great, but I would prefer for the generated flashcards to appear directly on each concept tiddler, perhaps using a tiddler like this, tagged $:/tags/ViewTemplate
:
<$list filter="[all[current]tag[Concept]">
<$macrocall $name=rememberq id={{!!created}} question={{!!title}} answer={{!!definition}} />
</$list>
The problem is that now the flashcards don’t sync. There must be a tiddler that I can include in the TiddlyRemember sync filter that will get this working, but really don’t know. I’ve tried including tiddlers matching filters like [all[shadows+system]prefix[$:/core/ui/ViewTemplate]]
to no avail.
Can anyone help?