diff options
-rw-r--r-- | view/html/recipe.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/html/recipe.html b/view/html/recipe.html index 356abda..985a4e1 100644 --- a/view/html/recipe.html +++ b/view/html/recipe.html @@ -10,7 +10,7 @@ <main>{{ if ne .Portions "" }} <p>Portions: {{.Portions}}</p>{{end}}{{ if ne .Url "" }} <p><a href="{{.Url}}">original recipe</a></p>{{end}}{{ if ne .Notes "" }} - <p>{{.Notes}}</p>{{end}} + <p style="white-space: pre-line;">{{.Notes}}</p>{{end}} <a href="/recipe/{{.Id}}?view=recipe-edit"><button>edit</button></a> <a href="/recipe/{{.Id}}?view=recipe-confirm-deletion"><button style="background-color:red">delete</button></a> </main> |