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
- First item
- Second item
- Third item
Unordered List
- First item
- Second item
- Third item
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
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:
- H1, H2, H3 headings
- Blockquotes
- Ordered and unordered lists
- Horizontal rules
- Bold and italic text
- Inline code
- Working links
- Working image URL
- Go code examples
Perfect for testing a Markdown-powered blog engine.