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. --- go.mod | 2 -- go.sum | 2 -- handler.go | 7 +------ 3 files changed, 1 insertion(+), 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("
%s
", recipe.Text) ServeTemplate(w, "recipe.html", recipe) } -- cgit v1.2.3-70-g09d2