Writing / Detail

Markdown Guide

2025.01.02
Technology
924 Words
- Views
- Comments

This post demonstrates the Markdown features supported by the Breeze theme.

Headings

Use ## for h2, ### for h3 headings. They will appear in the table of contents.

Sub-heading Example

This is a sub-heading that also appears in the TOC.

Text Formatting

You can use bold, italic, strikethrough, and inline code.

Code Blocks

function greet(name) {
console.log(`Hello, ${name}!`);
}
greet("Breeze");

Lists

  • Item one
  • Item two
    • Nested item
  • Item three
  1. First
  2. Second
  3. Third

Blockquotes

The best way to predict the future is to create it.

Visit Astro to learn more about the framework.

Tables

FeatureStatus
Dark ModeSupported
SearchSupported
RSSSupported

Task Lists

  • Set up the theme
  • Write your first post
  • Deploy to production