summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-04-01 18:37:47 +0200
committerxengineering <me@xengineering.eu>2023-04-01 18:37:47 +0200
commit43e6305c45c6365288c1f512702f49ba2e52e941 (patch)
tree6d9b06c423a3baa1368e1b23fd80ff3c24fe66c5
parent88107366bce6b7f7c788171a18c40ad102904ff4 (diff)
downloadceres-43e6305c45c6365288c1f512702f49ba2e52e941.tar
ceres-43e6305c45c6365288c1f512702f49ba2e52e941.tar.zst
ceres-43e6305c45c6365288c1f512702f49ba2e52e941.zip
Improve user interface
-rw-r--r--data/templates/recipe.html3
-rw-r--r--data/templates/recipe_edit.html2
-rw-r--r--handler.go3
3 files changed, 5 insertions, 3 deletions
diff --git a/data/templates/recipe.html b/data/templates/recipe.html
index 9f49fbb..b1fc550 100644
--- a/data/templates/recipe.html
+++ b/data/templates/recipe.html
@@ -15,9 +15,8 @@
</header>
<main>
- <h2>Recipe description</h2>
- <a href="./recipe/edit?id={{.Id}}"><button>edit</button></a>
{{.RenderedDescriptionMarkdown}}
+ <a href="./recipe/edit?id={{.Id}}"><button>edit</button></a>
{{ template "footer.html" }}
</main>
diff --git a/data/templates/recipe_edit.html b/data/templates/recipe_edit.html
index b35587e..4860c6a 100644
--- a/data/templates/recipe_edit.html
+++ b/data/templates/recipe_edit.html
@@ -17,7 +17,7 @@
<p>Recipe ID: {{.Id}}</p>
<pre contenteditable="true" id="editor"><code>{{.DescriptionMarkdown}}</code></pre>
<button onclick="save()">save</button>
- <a href="/recipe?id={{.Id}}"><button>cancel</button></a>
+ <a href="/recipe?id={{.Id}}"><button>back</button></a>
<a href="/recipe/confirm-deletion?id={{.Id}}"><button style="background-color:red">delete</button></a>
{{ template "footer.html" }}
</main>
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)