removed unnecessary comments

This commit is contained in:
zhanshi 2025-02-07 22:31:22 +01:00
parent af16863256
commit eac5b4d87b

10
main.go
View file

@ -97,11 +97,7 @@ func renderMarkdown(content string) template.HTML {
content = ulPattern.ReplaceAllString(content, "<li>$1</li>") content = ulPattern.ReplaceAllString(content, "<li>$1</li>")
content = olPattern.ReplaceAllString(content, "<li>$1</li>") content = olPattern.ReplaceAllString(content, "<li>$1</li>")
content = linkPattern.ReplaceAllString(content, `<a href="$2">$1</a>`) content = linkPattern.ReplaceAllString(content, `<a href="$2">$1</a>`)
// wrap list items in <ul> or <ol>
content = regexp.MustCompile(`(<li>.+?</li>)`).ReplaceAllString(content, "<ul>$1</ul>") content = regexp.MustCompile(`(<li>.+?</li>)`).ReplaceAllString(content, "<ul>$1</ul>")
// convert newlines to paragraphs
content = newlinePattern.ReplaceAllString(content, "<p>$1</p>") content = newlinePattern.ReplaceAllString(content, "<p>$1</p>")
return template.HTML(content) return template.HTML(content)
@ -159,15 +155,15 @@ func main() {
path := strings.TrimPrefix(r.URL.Path, "/") path := strings.TrimPrefix(r.URL.Path, "/")
if strings.HasSuffix(path, ".md") { if strings.HasSuffix(path, ".md") {
postHandler(w, r) postHandler(w, r)
} else if strings.Contains(path, ".") { // detect non-md files } else if strings.Contains(path, ".") {
http.ServeFile(w, r, filepath.Join(FILES_DIR, path)) // serve raw file http.ServeFile(w, r, filepath.Join(FILES_DIR, path))
} else { } else {
indexHandler(w, r) indexHandler(w, r)
} }
}) })
http.HandleFunc("/favicon.ico", func(w http.ResponseWriter, r *http.Request) { http.HandleFunc("/favicon.ico", func(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, "static/post.gif") // or just `w.WriteHeader(http.StatusNoContent)` http.ServeFile(w, r, "static/post.gif")
}) })