Example blog
This is a post written in Markdown.
- Itβs parsed server-side
- And rendered using Go templates!
- Code highlight is provided by
chroma
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}
π Features of Markdown
Emphasis
- Italic β
*Italic* - Bold β
**Bold** - Bold & Italic β
***Bold & Italic***
Blockquotes
This is a quote.
You can even nest them!
Links
Google
Images

Lists
Unordered:
Ordered:
- First
- Second
- Nested
- Still nested
Inline code
To refer to a function like main() or a file like README.md, use backticks.
More code highlighting
#!/bin/bash
echo "This is a bash script"
Tables
| Name | Language | Likes Markdown |
|---|
| Alice | Go | Yes β
|
| Bob | Python | Sometimes π |
| Charlie | Rust | Absolutely π¦ |