Skip to content

Commit

Permalink
fix(page): respect html in episode description
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-heimbuch committed Nov 24, 2024
1 parent 4c20cbc commit ae7443b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions apps/page/src/pages/feed/[...feed]/episode/[episodeId].astro
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ const timeline = [
<h2 class="font-mono inline-block border-gray-400 border-b-2 mb-6 mx-8 sm:mx-2">
{$t('EPISODE.SUMMARY')}
</h2>
<div class="font-light border-gray-400 border-b mb-12 pt-6 pb-12 px-6">
{episode.description}
<div class="font-light border-gray-400 border-b mb-12 pt-6 pb-12 px-6" set:html={episode.description}>
</div>
</section>
{
Expand Down

0 comments on commit ae7443b

Please sign in to comment.