Markdown Test Post

Cover image for post: Markdown Test Post
Vladyslav Pavlenko
Vladyslav Pavlenko

Here’s some bold text and italic text. You can also combine them with bold and italic.

This is an H3 Header

This is an H4 Header

Here’s some bold text and italic text. You can also combine them with bold and italic.

Here’s some inline code and a link to Google.

Lists

Unordered List

  • First item
  • Second item
    • Nested item
    • Another nested item
  • Third item

Ordered List

  1. First numbered item
  2. Second numbered item
    1. Nested numbered item
    2. Another nested numbered item
  3. Third numbered item

Code Blocks

Here’s a JavaScript code block:

And here’s a Go code block:

package main
 
import "fmt"
 
func main() {
    fmt.Println("Hello, Go!")
}