We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 094d471 commit 086ea07Copy full SHA for 086ea07
src/pages/transcripts.tsx
@@ -38,7 +38,10 @@ export default function Transcripts({
38
<p>
39
<em>Transcript from {date}</em>
40
</p>
41
- <div dangerouslySetInnerHTML={{ __html: latest.html }} />
+ <div
42
+ className="markdown"
43
+ dangerouslySetInnerHTML={{ __html: latest.html }}
44
+ />
45
</div>
46
</>
47
)}
@@ -68,7 +71,7 @@ export async function getStaticProps() {
68
71
title: latest.title,
69
72
description: latest.description,
70
73
date: latest.date,
- html: processMd(latest.content).html,
74
+ html: processMd(latest.content, { wrapFirstList: true }).html,
75
},
76
77
};
0 commit comments