milind@blog:~/posts$ cat test-blog-and-nothing-else.md

Back to Blog

Test Blog And Nothing Else

This is for test purposes only

19 words
1 min read
#test

Heading

Some repeated text

Some content before code block

package main

import (
    "fmt"
    "log"
    "net/http"
)

func handler(w http.ResponseWriter, r *http.Request) {
    fmt.Fprintf(w, "Hi there, I love %s!", r.URL.Path[1:])
}

func main() {
    http.HandleFunc("/", handler)
    log.Fatal(http.ListenAndServe(":8080", nil))
}

Some content after code block

Some repeated text

Something afterwards