diff options
Diffstat (limited to 'handler.go')
-rw-r--r-- | handler.go | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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) |