fix(movie.php.liquid): parse description as markdown

This commit is contained in:
Cory Dransfeldt 2025-05-26 16:51:10 -07:00
parent 0dd83a8d4e
commit 81e29e86ab
No known key found for this signature in database
3 changed files with 7 additions and 7 deletions

View file

@ -60,7 +60,7 @@ schema: movie
?>
<?php if (!empty($movie["description"])): ?>
<h2>Overview</h2>
<?= $movie["description"] ?>
<?= parseMarkdown($movie["description"]) ?>
<?php endif; ?>
</article>
<?php