diff options
Diffstat (limited to 'handler.go')
-rw-r--r-- | handler.go | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -3,7 +3,6 @@ package main import ( "bufio" "os" - "bytes" "fmt" "io/ioutil" "net/http" @@ -11,8 +10,6 @@ import ( "regexp" "strings" "strconv" - - "github.com/yuin/goldmark" ) const ( @@ -95,9 +92,7 @@ func recipeGet(w http.ResponseWriter, r *http.Request) { titleRegex := regexp.MustCompile(`\# .*`) recipe.Text = titleRegex.ReplaceAllString(recipe.Text, "") - var buf bytes.Buffer - goldmark.Convert([]byte(recipe.Text), &buf) - recipe.Html = buf.String() + recipe.Html = fmt.Sprintf("<pre>%s</pre>", recipe.Text) ServeTemplate(w, "recipe.html", recipe) } |