diff options
Diffstat (limited to 'data')
-rw-r--r-- | data/storage/recipes/0/text | 3 | ||||
-rw-r--r-- | data/templates/recipe.html | 2 | ||||
-rw-r--r-- | data/templates/recipe_edit.html | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/data/storage/recipes/0/text b/data/storage/recipes/0/text index 208828a..3eb81ce 100644 --- a/data/storage/recipes/0/text +++ b/data/storage/recipes/0/text @@ -2,5 +2,6 @@ Important steps: -- cook it +- cook it smoothly +- serve it - eat it diff --git a/data/templates/recipe.html b/data/templates/recipe.html index b1fc550..972a8bf 100644 --- a/data/templates/recipe.html +++ b/data/templates/recipe.html @@ -15,7 +15,7 @@ </header> <main> - {{.RenderedDescriptionMarkdown}} + {{.Html}} <a href="./recipe/edit?id={{.Id}}"><button>edit</button></a> {{ template "footer.html" }} diff --git a/data/templates/recipe_edit.html b/data/templates/recipe_edit.html index 4860c6a..9069d4a 100644 --- a/data/templates/recipe_edit.html +++ b/data/templates/recipe_edit.html @@ -15,7 +15,7 @@ <main> <p>Recipe ID: {{.Id}}</p> - <pre contenteditable="true" id="editor"><code>{{.DescriptionMarkdown}}</code></pre> + <pre contenteditable="true" id="editor"><code>{{.Text}}</code></pre> <button onclick="save()">save</button> <a href="/recipe?id={{.Id}}"><button>back</button></a> <a href="/recipe/confirm-deletion?id={{.Id}}"><button style="background-color:red">delete</button></a> |