Organize and filter your notes using tags defined in YAML frontmatter.
Add tags to the top of your note:
---
tags: [python, tutorial]
---
# Your Note Content
The rest of your note goes here...---
tags: [python, tutorial, backend]
------
tags:
- python
- tutorial
- backend
------
tags: python
---- Click any tag in the sidebar to filter notes
- Select multiple tags to combine filters (AND logic)
- Only notes with ALL selected tags are shown
- Tag count badge shows number of notes per tag
- Use tags alone to filter by category
- Use text search alone to find content
- Combine both to narrow results (e.g., search "async" in notes tagged "python")
| Filter Type | Display |
|---|---|
| None | Full folder tree |
| Tags only | Flat list of matching notes |
| Text only | Search results with matches |
| Tags + Text | Combined filtered results |
- Tag names: Lowercase, no spaces (e.g.,
python,work-notes) - Consistency: Use consistent tag names across notes
- Hierarchy: Use related tags (e.g.,
python,python-async,python-web) - Don't overdo it: 3-5 tags per note is usually sufficient
- Must start with
---on the first line - Must end with
---on its own line - Content between markers is YAML format
- Frontmatter is hidden from preview
---
tags: [project, backend, api]
---
# API Documentation---
tags: [tutorial, beginner, docker]
---
# Getting Started with Docker---
tags: [meeting, q4-2024, planning]
---
# Q4 Planning Meeting Notes