AwesomeDog / obsidian-awesome-flashcard

Handy Anki integration for Obsidian.
MIT License
30 stars 5 forks source link

Discussion/Feature Request: Short card format #4

Open itsamemarkus opened 1 year ago

itsamemarkus commented 1 year ago

I just found this plugin and I'm really impressed with it because it's the first one really usable which doesn't clutter my markdown. Thanks!

I'm trying it currently and sometimes I think the --- might be a little too much if I have super short cards. For longer cards the --- syntax is perfect imo.

Here are two examples. Maybe there are others that make sense. Do you think it's worth thinking about a short format for this plugin?

Current syntax


Install program #flashcard apt install python3



Remove program #flashcard apt remove python3



Update repository / check which updates are available #flashcard apt update



Update all programs #flashcard apt upgrade



Remove a program and also remove all config files #flashcard apt purge python3



Show info about the package python3 #flashcard apt show python3



List all packages that start with python3 #flashcard apt list python3*


Short format example 1

Install programm :: apt install python3 #flashcard

Remove program :: apt remove python3 #flashcard

Update repository / check which updates are available :: apt update #flashcard

Update all programs :: apt upgrade #flashcard

Remove a program and also remove all config files :: apt purge python3 #flashcard

Show info about the package python3 :: apt show python3 #flashcard

List all packages that start with python3 :: apt list python3* #flashcard

Short format example 2

(spacing is usually smaller in Obsidian compared to Github)

louwers commented 1 year ago

How about this

---
#flashcards

- Question
  - Answer
- Question
  - Answer
- Question
  - Answer

---
itsamemarkus commented 1 year ago

That's even better!