diff --git a/front/src/components/audio/podcast/Row.vue b/front/src/components/audio/podcast/Row.vue index 6b56048f4..27def91bd 100644 --- a/front/src/components/audio/podcast/Row.vue +++ b/front/src/components/audio/podcast/Row.vue @@ -10,6 +10,7 @@ import axios from 'axios' import PlayButton from '~/components/audio/PlayButton.vue' +import useMarkdown from '~/composables/useMarkdown' import usePlayOptions from '~/composables/audio/usePlayOptions' import useErrorHandler from '~/composables/useErrorHandler' @@ -47,6 +48,7 @@ const props = withDefaults(defineProps(), { }) const description = ref('') +const renderedDescription = useMarkdown(description) const { currentTrack } = useQueue() const { activateTrack } = usePlayOptions(props) @@ -106,10 +108,10 @@ await fetchData() @click.prevent.exact="activateTrack(track, index)" >{{ track.title }}

- {{ description }} + {{ renderedDescription }}