Anqian Wang
Results
1
issues of
Anqian Wang
For https://pkg.go.dev/github.com/shurcooL/github_flavored_markdown#example-Markdown-CompleteHTMLPage I tried with http handler: ```go http.Handle("/assets/", http.StripPrefix("/assets", http.FileServer(gfmstyle.Assets))) http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { io.WriteString(w, ``) markdown := []byte("# GitHub Flavored Markdown\n\nHello.") w.Write(github_flavored_markdown.Markdown(markdown)) io.WriteString(w, ``) }) http.ListenAndServe(":8000",...