This note demonstrates all supported markdown features in the Obsidian theme.
Text Formatting
- Bold text with
**double asterisks** - Italic text with
*single asterisks* Strikethroughwith~~double tildes~~Inline codewith backticks- ==Highlighted text== (if supported)
Links
External Links
Wikilinks (Internal Links)
[[note-name]]β Basic wikilink[[note-name|Display Text]]β Wikilink with alias
Examples:
Lists
Unordered List
- First item
- Second item
- Nested item
- Another nested item
- Third item
Ordered List
- First step
- Second step
- Third step
Task List
- Create vault structure
- Add wikilink support
- Implement search
- Add graph view
- Mobile optimization
Blockquotes
This is a regular blockquote. It can span multiple lines.
Obsidian Callouts
Notes are for general information and documentation.
Tips provide helpful suggestions and best practices.
Info callouts are great for supplementary information.
Warnings alert users to potential issues or important considerations.
Danger callouts highlight critical information that requires attention.
Examples demonstrate concepts in practice.
βThe best way to predict the future is to create it.β β Peter Drucker
Code
Inline Code
Use git status to check the state of your repository.
Code Blocks
class ObsidianTheme
def initialize(name)
@name = name
@features = []
end
def add_feature(feature)
@features << feature
puts "Added #{feature} to #{@name}"
end
end
.obsidian-theme {
--bg-primary: #202225;
--text-normal: #dcddde;
--accent: #7c3aed;
display: grid;
grid-template-columns: 260px 1fr 280px;
height: 100vh;
}
Tables
| Feature | Status | Notes |
|---|---|---|
| Wikilinks | Done | note-name syntax |
| Backlinks | Done | Auto-generated |
| Search | Done | Ctrl+K command palette |
| Graph view | Done | Vis.js network |
| Tags | Done | Inline tag support |
| Callouts | Done | Obsidian-style |
Images
Images work with standard markdown syntax:

Horizontal Rules
Tags
This note is tagged with: #guide #markdown #syntax
Check the tag pages to see all notes with these tags.