summaryrefslogtreecommitdiff
path: root/handler.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-04-10 16:40:22 +0200
committerxengineering <me@xengineering.eu>2023-04-12 18:40:53 +0200
commit3d697e774668e65bfef9bdd18224feecf086da97 (patch)
tree2ba6a240dcfea2dba832be4ed3e80d42df12b762 /handler.go
parenta7a7bc184eb010166c8eb4a3255aad73b6d06edc (diff)
downloadceres-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.go13
1 files changed, 5 insertions, 8 deletions
diff --git a/handler.go b/handler.go
index b473dde..a480ce3 100644
--- a/handler.go
+++ b/handler.go
@@ -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)
}