diff options
author | xengineering <me@xengineering.eu> | 2023-04-10 16:40:22 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-04-12 18:40:53 +0200 |
commit | 3d697e774668e65bfef9bdd18224feecf086da97 (patch) | |
tree | 2ba6a240dcfea2dba832be4ed3e80d42df12b762 /handler.go | |
parent | a7a7bc184eb010166c8eb4a3255aad73b6d06edc (diff) | |
download | ceres-3d697e774668e65bfef9bdd18224feecf086da97.tar ceres-3d697e774668e65bfef9bdd18224feecf086da97.tar.zst ceres-3d697e774668e65bfef9bdd18224feecf086da97.zip |
Implement markup to HTML conversion
The new custom and text/gemini inspired markup has to be converted to
HTML to display the recipe.
Diffstat (limited to 'handler.go')
-rw-r--r-- | handler.go | 13 |
1 files changed, 5 insertions, 8 deletions
@@ -43,10 +43,11 @@ func indexGet(w http.ResponseWriter, r *http.Request) { textpath := fmt.Sprintf("data/storage/recipes/%s/text", v.Name()) data, _ := ioutil.ReadFile(textpath) + markup := Markup(data) recipes = append(recipes, Recipe{ v.Name(), - titleFromMarkup(string(data)), + markup.title(), string(data), "", }) @@ -67,19 +68,15 @@ func recipeGet(w http.ResponseWriter, r *http.Request) { textpath := fmt.Sprintf("data/storage/recipes/%s/text", idStr) data, _ := ioutil.ReadFile(textpath) + markup := Markup(data) recipe := Recipe{ idStr, - titleFromMarkup(string(data)), + markup.title(), string(data), - "", + markup.html(), } - titleRegex := regexp.MustCompile(`\# .*`) - recipe.Text = titleRegex.ReplaceAllString(recipe.Text, "") - - recipe.Html = fmt.Sprintf("<pre>%s</pre>", recipe.Text) - ServeTemplate(w, "recipe.html", recipe) } |