Skip to content

Commit

Permalink
moving slice to bigger text to avoid link breaks on preview text
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelernestog committed Aug 18, 2023
1 parent 36e51d3 commit 1827f77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/[...page].astro
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const { page } = Astro.props;
<HorizontalCard
title={episode.data.title}
cover={episode.data.cover}
desc={marked.parse(episode.body.slice(0, 200), { renderer: renderer })}
desc={marked.parse(episode.body.slice(0, 500), { renderer: renderer })}
url={"/episode/" + episode.slug}
audioUrl={episode.data.audioUrl}
pubDate={episode.data.pubDate}
Expand Down

0 comments on commit 1827f77

Please sign in to comment.