This note demonstrates all supported markdown features in the Obsidian theme.

Text Formatting

  • Bold text with **double asterisks**
  • Italic text with *single asterisks*
  • Strikethrough with ~~double tildes~~
  • Inline code with backticks
  • ==Highlighted text== (if supported)
  • [[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

  1. First step
  2. Second step
  3. 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

Note

Notes are for general information and documentation.

Tip

Tips provide helpful suggestions and best practices.

Info

Info callouts are great for supplementary information.

Warning

Warnings alert users to potential issues or important considerations.

Danger

Danger callouts highlight critical information that requires attention.

Example

Examples demonstrate concepts in practice.

Quote

β€œ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:

![Alt text](/path/to/image.png)

Horizontal Rules


Tags

This note is tagged with: #guide #markdown #syntax

Check the tag pages to see all notes with these tags.

Graph View
Tags
Folders
Options