diff options
author | xengineering <me@xengineering.eu> | 2023-04-08 21:30:11 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-04-08 22:15:45 +0200 |
commit | dbf0ea2dd53b88a26ab7e3cc12a06344022d57ec (patch) | |
tree | 5b85f2d3ef16cc531ab6d35a18fb0e54bc82350f /handler.go | |
parent | d0d740cd58cef0adea51aae5c9df37181a0ed270 (diff) | |
download | ceres-dbf0ea2dd53b88a26ab7e3cc12a06344022d57ec.tar ceres-dbf0ea2dd53b88a26ab7e3cc12a06344022d57ec.tar.zst ceres-dbf0ea2dd53b88a26ab7e3cc12a06344022d57ec.zip |
Move title parsing to new markup.go file
The new recipe markup which replaces Markdown will need an own file to
be implemented.
Diffstat (limited to 'handler.go')
-rw-r--r-- | handler.go | 18 |
1 files changed, 2 insertions, 16 deletions
@@ -1,14 +1,12 @@ package main import ( - "bufio" "os" "fmt" "io/ioutil" "net/http" "path/filepath" "regexp" - "strings" "strconv" ) @@ -23,18 +21,6 @@ type Recipe struct { Html string } -func titleFromMd(md string) string { - scanner := bufio.NewScanner(strings.NewReader(md)) - for scanner.Scan() { - line := scanner.Text() - cut, found := strings.CutPrefix(line, "# ") - if (found) { - return cut - } - } - return "no title detected" -} - func indexGet(w http.ResponseWriter, r *http.Request) { entries, err := os.ReadDir("data/storage/recipes") @@ -60,7 +46,7 @@ func indexGet(w http.ResponseWriter, r *http.Request) { recipes = append(recipes, Recipe{ v.Name(), - titleFromMd(string(data)), + titleFromMarkup(string(data)), string(data), "", }) @@ -84,7 +70,7 @@ func recipeGet(w http.ResponseWriter, r *http.Request) { recipe := Recipe{ idStr, - titleFromMd(string(data)), + titleFromMarkup(string(data)), string(data), "", } |