An embed for Obsidian that shows clickable buttons for snoozing notes. Relies on the Meta Bind and Spaced Repetition plugins.
SnoozeButtons.md
1`BUTTON[hard, good, easy]`
2```meta-bind-button
3style: primary
4label: Top of mind
5id: hard
6hidden: true
7action:
8 type: command
9 command: obsidian-spaced-repetition:srs-note-review-hard
10```
11```meta-bind-button
12style: default
13label: Later
14id: good
15hidden: true
16action:
17 type: command
18 command: obsidian-spaced-repetition:srs-note-review-good
19```
20```meta-bind-button
21style: default
22label: Not right now
23id: easy
24hidden: true
25action:
26 type: command
27 command: obsidian-spaced-repetition:srs-note-review-easy
28```