Skip to content

Commit 6aa0ad1

Browse files
KianNHsdnts
authored andcommitted
[Docs Site] Render plans.json feature summaries as Markdown (cloudflare#23580)
1 parent 30666bd commit 6aa0ad1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ProductFeatures.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const entries = Object.entries(plan);
4343
)}
4444
/>
4545
{value.title !== "Availability" && value.summary && (
46-
<p>{value.summary}</p>
46+
<Fragment set:html={marked.parse(value.summary)} />
4747
)}
4848
<ul>
4949
{value.free !== undefined && (

0 commit comments

Comments
 (0)