Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Create and edit Obsidian Flavored Markdown with wikilinks, embeds, callouts, properties, and note-specific syntax.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
PROPERTIES.md
1# Properties (Frontmatter) Reference23Properties use YAML frontmatter at the start of a note:45```yaml6---7title: My Note Title8date: 2024-01-159tags:10- project11- important12aliases:13- My Note14- Alternative Name15cssclasses:16- custom-class17status: in-progress18rating: 4.519completed: false20due: 2024-02-01T14:30:0021---22```2324## Property Types2526| Type | Example |27|------|---------|28| Text | `title: My Title` |29| Number | `rating: 4.5` |30| Checkbox | `completed: true` |31| Date | `date: 2024-01-15` |32| Date & Time | `due: 2024-01-15T14:30:00` |33| List | `tags: [one, two]` or YAML list |34| Links | `related: "[[Other Note]]"` |3536## Default Properties3738- `tags` - Note tags (searchable, shown in graph view)39- `aliases` - Alternative names for the note (used in link suggestions)40- `cssclasses` - CSS classes applied to the note in reading/editing view4142## Tags4344```markdown45#tag46#nested/tag47#tag-with-dashes48#tag_with_underscores49```5051Tags can contain: letters (any language), numbers (not first character), underscores `_`, hyphens `-`, forward slashes `/` (for nesting).5253In frontmatter:5455```yaml56---57tags:58- tag159- nested/tag260---61```62