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.
CALLOUTS.md
1# Callouts Reference23## Basic Callout45```markdown6> [!note]7> This is a note callout.89> [!info] Custom Title10> This callout has a custom title.1112> [!tip] Title Only13```1415## Foldable Callouts1617```markdown18> [!faq]- Collapsed by default19> This content is hidden until expanded.2021> [!faq]+ Expanded by default22> This content is visible but can be collapsed.23```2425## Nested Callouts2627```markdown28> [!question] Outer callout29> > [!note] Inner callout30> > Nested content31```3233## Supported Callout Types3435| Type | Aliases | Color / Icon |36|------|---------|-------------|37| `note` | - | Blue, pencil |38| `abstract` | `summary`, `tldr` | Teal, clipboard |39| `info` | - | Blue, info |40| `todo` | - | Blue, checkbox |41| `tip` | `hint`, `important` | Cyan, flame |42| `success` | `check`, `done` | Green, checkmark |43| `question` | `help`, `faq` | Yellow, question mark |44| `warning` | `caution`, `attention` | Orange, warning |45| `failure` | `fail`, `missing` | Red, X |46| `danger` | `error` | Red, zap |47| `bug` | - | Red, bug |48| `example` | - | Purple, list |49| `quote` | `cite` | Gray, quote |5051## Custom Callouts (CSS)5253```css54.callout[data-callout="custom-type"] {55--callout-color: 255, 0, 0;56--callout-icon: lucide-alert-circle;57}58```59