Skip to content
This repository has been archived by the owner on Nov 22, 2024. It is now read-only.

Commit

Permalink
fix markdown rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
Bao Zhiyuan committed Oct 8, 2024
1 parent d77fba9 commit 80b5b50
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/build.mts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ const ghClient = new octokit.Octokit({
auth: process.env.GITHUB_TOKEN,
})

const md = markdownit()
const md = markdownit({
html: true,
linkify: true,
typographer: true,
})

function githubBtn(
authorName: string,
Expand Down

0 comments on commit 80b5b50

Please sign in to comment.