diff --git a/.gitignore b/.gitignore index 717302d0..cfc6130f 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ _site node_modules .cache +.wrangler # local dependencies .env.local diff --git a/src/pages/main/books/book.html b/src/pages/main/books/book.html index d0e6433d..ce5048a2 100644 --- a/src/pages/main/books/book.html +++ b/src/pages/main/books/book.html @@ -52,5 +52,5 @@ schema: book {{ book.review | markdown }}
{% endif %} - {% if book.description %}{{ book.description }}{% endif %} + {% if book.description %}{{ book.description | markdown }}{% endif %} \ No newline at end of file diff --git a/src/pages/main/music/artists/artist.html b/src/pages/main/music/artists/artist.html index 03b4dfdd..b23e179b 100644 --- a/src/pages/main/music/artists/artist.html +++ b/src/pages/main/music/artists/artist.html @@ -56,7 +56,7 @@ schema: artist {%- if artist.description -%} -
{{ artist.description | markdown }}
+
{{ artist.description | markdown }}
{%- endif -%} diff --git a/src/pages/main/watching/movie.html b/src/pages/main/watching/movie.html index bf1dbe8d..ce60e88f 100644 --- a/src/pages/main/watching/movie.html +++ b/src/pages/main/watching/movie.html @@ -42,5 +42,5 @@ schema: movie {{ movie.review | markdown }}
{% endif %} - {% if movie.description %}{{ movie.description }}{% endif %} + {% if movie.description %}{{ movie.description | markdown }}{% endif %} \ No newline at end of file diff --git a/src/pages/secondary/contact/index.html b/src/pages/secondary/contact/index.html index 767acebf..43444265 100644 --- a/src/pages/secondary/contact/index.html +++ b/src/pages/secondary/contact/index.html @@ -15,7 +15,7 @@ description: How to contact me.
  • File an issue on the appropriate repo over at GitHub
  • - + @@ -33,3 +33,16 @@ description: How to contact me. + \ No newline at end of file