diff options
author | xengineering <me@xengineering.eu> | 2023-04-08 21:14:36 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-04-08 22:15:45 +0200 |
commit | d0d740cd58cef0adea51aae5c9df37181a0ed270 (patch) | |
tree | fde435bd48713bdad652c5e7e8d25b7136a6de98 /handler.go | |
parent | fa2ad475b4e0c890b662b61886599373f552bf31 (diff) | |
download | ceres-d0d740cd58cef0adea51aae5c9df37181a0ed270.tar ceres-d0d740cd58cef0adea51aae5c9df37181a0ed270.tar.zst ceres-d0d740cd58cef0adea51aae5c9df37181a0ed270.zip |
Remove Markdown rendering
This step prepares moving to a new, custom and easily parsable markup
language.
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) } |