Suspending & Disabling Sync
There are two properties to control what appears in your anki queue: suspend-anki-card (recommended) and disable-anki-sync.
Suspending Cards (Recommended)
Use the suspend-anki-card property to suspend cards in Anki instead of completely removing them. This is the recommended approach when you want to temporarily hide cards from review without losing your progress or deleting the cards.
For suspend-anki-card to work, you must have "Suspended" enabled in your plugin settings under "Overwrite following on every sync".
- suspend-anki-card:: true
What is the capital of Japan? #card
- Tokyo
Suspend Property Specificity Rules
The plugin follows a specificity hierarchy when determining if a card should be suspended. Properties closer to the card block take priority:
1. Block-Level Properties (Highest Priority)
- suspend-anki-card:: true
What is the capital of Japan? #card
- Tokyo
The card will be suspended.
2. Parent Block-Level Properties
- suspend-anki-card:: true
Geography Questions
- What is the capital of Japan? #card
- Tokyo
- What is the capital of Japan? #card
The card will be suspended.
3. Page Properties
Properties defined in the first block of a page apply to all cards on that page:
Draft Questions Page
- suspend-anki-card:: true
- What is the capital of Japan? #card
- Tokyo
- suspend-anki-card:: false
What is the capital of France? #card
- Paris
Japan capital card will be suspended (as defined in page properties) and France capital card will not be suspended (overridden by current block property).
4. Page Namespace Fallback
If no suspend-anki-card property is found in current block, parent block, or page property, the plugin uses the page's namespace:
- Page
Draft/Geography→ ChecksDraftpage forsuspend-anki-cardproperty - Page
Draft/Geography/Capitals→ ChecksDraft/Geographypage, thenDraftpage
Disabling Sync Completely
Use the disable-anki-sync property to completely prevent cards from syncing to Anki.
Important difference: Unlike suspend-anki-card, using disable-anki-sync will:
- Prevent the card from being created in Anki
- Delete existing cards from Anki if they were already synced
- Lose all review progress for that card
Only use this if you want to permanently remove cards from Anki.
- disable-anki-sync:: true
What is the capital of Japan? #card
- Tokyo
Disable Sync Property Specificity Rules
The disable-anki-sync property follows the same hierarchy as suspend-anki-card:
- Block-Level Properties (Highest Priority)
- Parent Block-Level Properties
- Page Properties
- Page Namespace Fallback
- disable-anki-sync:: true
Geography Questions
- What is the capital of Japan? #card
- Tokyo
- What is the capital of Japan? #card
The card will not sync and will be deleted from Anki if it already exists.
Tips
- Use
suspend-anki-cardfor temporarily hiding cards (e.g., draft questions, seasonal topics, cards you want to revisit later) - Use
disable-anki-synconly when you want to permanently exclude cards from Anki - Use page properties (first block) to apply either property to all cards on a page
- Use namespace pages (e.g.,
Draftpage) to control entire sections of your graph - Set the property to
falseon specific blocks to override parent settings - When
suspend-anki-cardis not set, the plugin will not modify the card's suspension status in Anki. It will remain as it is in Anki.