Quick Start
Get up and running with YAML Toolkit for Obsidian in 5 minutes.
Opening YAML Toolkit
- Press
Cmd/Ctrl + Pto open the command palette - Type "YAML Toolkit"
- Select "YAML Toolkit: Open Rule Builder"
Your First Rule
Let's add a "reviewed" tag to all notes:
Condition:
NOT tags contains "reviewed"Action:
FOR tags APPEND "reviewed"Step by step:
- Enter the condition and action in their respective fields
- Click Preview - You'll see which notes will be affected
- Review the changes in the preview panel
- Click Apply to execute
Common Tasks
Add Missing Field
Condition:
NOT HAS statusAction:
SET status "draft"Update Field Value
Condition:
status = "draft"Action:
SET status "in-progress"Tag Management
Condition:
tags contains "old-tag"Action:
FOR tags WHERE $ = "old-tag" REMOVE, FOR tags APPEND "new-tag"