markdown support for author notes

This commit is contained in:
mi
2025-11-12 11:12:29 +10:00
parent 4657d85dde
commit 8abb185c02
5 changed files with 49 additions and 0 deletions

View File

@@ -52,7 +52,11 @@
{% if comic.author_note %}
<div class="comic-transcript">
<h3>Author Note</h3>
{% if comic.author_note_is_html == True %}
<div>{{ comic.author_note|safe }}</div>
{% else %}
<p>{{ comic.author_note }}</p>
{% endif %}
</div>
{% endif %}
</div>

View File

@@ -44,7 +44,11 @@
{% if comic.author_note %}
<div class="comic-transcript">
<h3>Author Note</h3>
{% if comic.author_note_is_html == True %}
<div>{{ comic.author_note|safe }}</div>
{% else %}
<p>{{ comic.author_note }}</p>
{% endif %}
</div>
{% endif %}
</div>