summaryrefslogtreecommitdiff
path: root/handler.go
diff options
context:
space:
mode:
Diffstat (limited to 'handler.go')
-rw-r--r--handler.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/handler.go b/handler.go
index aa231e5..46e1b02 100644
--- a/handler.go
+++ b/handler.go
@@ -111,6 +111,9 @@ func recipeGet(w http.ResponseWriter, r *http.Request) {
return
}
+ titleRegex := regexp.MustCompile(`\# .*`)
+ elements[0].DescriptionMarkdown = titleRegex.ReplaceAllString(elements[0].DescriptionMarkdown, "")
+
// render markdown
var buf bytes.Buffer
goldmark.Convert([]byte(elements[0].DescriptionMarkdown), &buf)