From d0d740cd58cef0adea51aae5c9df37181a0ed270 Mon Sep 17 00:00:00 2001 From: xengineering Date: Sat, 8 Apr 2023 21:14:36 +0200 Subject: Remove Markdown rendering This step prepares moving to a new, custom and easily parsable markup language. --- handler.go | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'handler.go') 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("
%s
", recipe.Text) ServeTemplate(w, "recipe.html", recipe) } -- cgit v1.2.3-70-g09d2