We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b92b18a commit 160c337Copy full SHA for 160c337
index.ts
@@ -372,7 +372,7 @@ async function build(liveReload: boolean = false): Promise<number> {
372
373
const path = `./proposals/${filename}`;
374
const content = await Bun.file(path).text();
375
- const html = Bun.markdown.html(content);
+ const html = Bun.markdown.html(content, { autolinks: true });
376
const number = parseRFCNumber(filename);
377
const title = parseTitle(content, filename);
378
const git = await getGitHistory(path, repoPath);
styles.css
@@ -226,6 +226,7 @@ pre {
226
overflow-x: auto;
227
margin-bottom: 1rem;
228
font-size: 0.875rem;
229
+ line-height: 1;
230
}
231
232
pre code {
0 commit comments