summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--go.mod2
-rw-r--r--go.sum2
-rw-r--r--handler.go7
3 files changed, 1 insertions, 10 deletions
diff --git a/go.mod b/go.mod
index 245dd45..ce6e851 100644
--- a/go.mod
+++ b/go.mod
@@ -1,5 +1,3 @@
module xengineering.eu/ceres
go 1.16
-
-require github.com/yuin/goldmark v1.4.13
diff --git a/go.sum b/go.sum
index 29914fb..e69de29 100644
--- a/go.sum
+++ b/go.sum
@@ -1,2 +0,0 @@
-github.com/yuin/goldmark v1.4.13 h1:fVcFKWvrslecOb/tg+Cc05dkeYx540o0FuFt3nUVDoE=
-github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
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)
}