chore: debug

This commit is contained in:
Cory Dransfeldt 2024-06-10 10:07:20 -07:00
parent 4f238dbb5f
commit 4a621bc6fe
No known key found for this signature in database
7 changed files with 271 additions and 21 deletions

View file

@ -52,5 +52,5 @@ schema: book
{{ book.review | markdown }}
<hr class="large-spacing" />
{% endif %}
{% if book.description %}<em>{{ book.description }}</em>{% endif %}
{% if book.description %}{{ book.description | markdown }}{% endif %}
</article>

View file

@ -56,7 +56,7 @@ schema: artist
</div>
</div>
{%- if artist.description -%}
<div data-toggle-content class="text-toggle-hidden"><em>{{ artist.description | markdown }}</em></div>
<div data-toggle-content class="text-toggle-hidden">{{ artist.description | markdown }}</div>
<button data-toggle-button>Show more</button>
{%- endif -%}
<table>

View file

@ -42,5 +42,5 @@ schema: movie
{{ movie.review | markdown }}
<hr class="large-spacing" />
{% endif %}
{% if movie.description %}<em>{{ movie.description }}</em>{% endif %}
{% if movie.description %}{{ movie.description | markdown }}{% endif %}
</article>