feat: transcript display formatting with markdown and OOC styling

This commit is contained in:
Joseph Doherty
2026-04-26 14:22:43 -04:00
parent 8390703b73
commit 330077afcf
6 changed files with 225 additions and 11 deletions
+1 -1
View File
@@ -19,7 +19,7 @@
{% for turn in turns %}
<div class="turn turn-{{ turn.role }}">
<strong>{{ turn.speaker }}</strong>
<p>{{ turn.text }}</p>
{{ turn.text|render_prose|safe }}
</div>
{% endfor %}
{% endif %}