summaryrefslogtreecommitdiff
path: root/handler.go
diff options
context:
space:
mode:
Diffstat (limited to 'handler.go')
-rw-r--r--handler.go7
1 files changed, 1 insertions, 6 deletions
diff --git a/handler.go b/handler.go
index adfcd61..5753226 100644
--- a/handler.go
+++ b/handler.go
@@ -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)
}