Hello markdown user 👋
See our complete guide video and step-by-step documentation below for details regarding learning with NeuraCache, flashcards and spaced repetition.
If you have any questions feel free to reach out via e-mail, Reddit Community or Twitter 👍
Obsidian: Learning With Markdown Files
Obsidian: NeuraCache + Obsidian with @Effective Remote Work
Obsidian: NeuraCache + Obsidian with @tallguyjenks
Github Flashcards and Spaced Repetition Specification for Markdown:
Feature | iOS | Android |
---|---|---|
✅ | ✅ | |
✅ | ✅ | |
✅ | ✅ | |
✅ | ✅ | |
✅ | ✅ | |
✅ | ✅ | |
Two-Sided Flashcards | ✅ | Planned |
Single Source of Truth | ✅ | ✅ |
Import Full Pages | ✅ | Planned |
Indented Cards | ✅ | Planned |
Batch Cards | ✅ | Planned |
Quick Cheat-Sheet ⚡️
- One-Line Flashcards
- Micro-Cards
- Regular Flashcards
- Spaced Repetition Cards
- Two-Sided Flashcards
One-Line Flashcards
Format:
Question : Answer #flashcard #optionaltag1 #optionaltag2
Example:
⌥⏎ : follow link #flashcard #intellij #shortkeys
Micro-Cards
Same as "One-Line Flashcards" but instead of a #flashcard you can use ⚡️ or 🧠
This is great for Github README.md files where a #flashcard could look strange.
Example:
⌥⏎: follow link ⚡️
One-Line Spaced Repetition
Format:
Content #spaced #optionaltag1 #optionaltag2
Example:
"We are what we repeadetly do" #spaced
Regular Flashcards
Regular cards allow creating cards with images, latex, lists, etc.
A horizontal rule is used to mark the end of the card.
As a horizontal rule, you can use:
- --, - - -, ***, * * *
Format:
Question #flashcard #optionaltag1 #optionaltag2
Answer
---
Example:
Radii of stable orbits in the Bohr model #flashcard
$a_0 = \frac{{ \hbar ^2}}{{m_e ke^2}}$
$\Delta E = h\nu$
$c = \lambda \nu$
---
Regular Spaced Repetition
Format:
#spaced #optionaltag1 #optionaltag2
content
---
Example:
#spaced #quotes
"We are what we repeatedly do. Excellence, then, is not an act, but a habit."
![some alias](https://neuracache.com/images/.jpg)
---
Two-Sided Flashcards
Format:
#flashcard #optional-tag1 #optional-tag2
question
---
answer
---
Example:
#flashcard #git ![[git.png]] What does this command do?
``` git clean -nfd
```
---
Remove current untracked files/directories d - directories f - files n - show result first
---