TheNextGuy32 / chinese

The top 1500 Chinese Characters setup for Obsidian
7 stars 3 forks source link

Integration with spaced repetition plugin #1

Open Masstronaut opened 2 years ago

Masstronaut commented 2 years ago

Would be amazing to have all of these come with prompts that work with the Spaced repetition plugin for obsidian. Some ideas for flashcards:

TheNextGuy32 commented 2 years ago

I'll look into the plugin, as that sounds amazing and is easy to automate

Masstronaut commented 2 years ago

It shouldn't be terribly complex. They generally follow the structure of .

So you would add something like these to each note for all the details you want flashcards for:

What is the pinyin for 吗?::ma or What does 吗 mean?::final interrogative particle

Each note would also need to include a tag that can be used to turn the flashcards on and off. This can be done in the note or my preference is in the YAML frontmatter, like this:

---
tags: [ chinese1500 ]
---

Then in the spaced repetition plugin settings, I can add #chinese1500 (or whatever tag you end up using) to have those prompts start showing up in my review queue.

Then when reviewing the prompts, users would be presented with a flashcard like:

What is the pinyin for 吗?

When they click show answer it would say:

ma

And they can give feedback for how quickly they want to see the same prompt again.

Hope this is helpful!