Markdown Features in Vibe Site
Vibe Site uses CommonMark with useful extensions. Here's what's supported.
Basic Formatting
You can use bold, italic, strikethrough, and inline code.
Code Blocks
Fenced code blocks with syntax highlighting:
fn main() {
println!("Hello from Vibe Site!");
}
def greet(name):
return f"Hello, {name}!"
Tables
| Feature | Supported |
|---|---|
| Tables | Yes |
| Footnotes | Yes |
| Strikethrough | Yes |
| Heading IDs | Yes |
Footnotes
Here's a sentence with a footnote1.
1
This is the footnote content.
Blockquotes
Vibe Site puts content first. No configuration required.
Lists
Unordered:
- Item one
- Item two
- Nested item
Ordered:
- First
- Second
- Third
Links
- Internal: home page
- External: Rust
- Tags: #markdown
- Contexts: @documentation
Related: #markdown #formatting @documentation