21 Jun 2026, Title Post

H1 - Main Heading

This is a demo blog post written to showcase common Markdown elements.

H2 - Section Heading

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

H3 - Subsection Heading

This is a blockquote example. Use it to highlight important notes, quotes, or callouts.

Ordered List

  1. First item
  2. Second item
  3. Third item

Unordered List


Text Formatting

This text contains bold formatting.

This text contains italic formatting.

This text contains inline code.

Link Example

Visit Go to learn more Go language.

Image Example

Gophers Image Gophers Image

Go Inline Code

fmt.Println("Hello, World!")

Go Code Block

package main

import "fmt"

func main() {
    user := struct {
        Name string
        Role string
    }{
        Name: "John Doe",
        Role: "Developer",
    }

    fmt.Printf("User: %s (%s)\n", user.Name, user.Role)
}

Conclusion

This demo includes:

Perfect for testing a Markdown-powered blog engine.