Skip to content

Commit c1f7847

Browse files
committed
update
1 parent 57677b2 commit c1f7847

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

.npmrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@codebam:registry=https://npm.pkg.github.com/
2+
//npm.pkg.github.com/:_authToken=${NPM_TOKEN}
3+
always-auth=true

src/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export async function markdownToHtml(s: string): Promise<string> {
3434
};
3535

3636
renderer.listitem = (item) => {
37-
return renderer.parser.parseInline(item.tokens);
37+
return renderer.parser.parse(item.tokens).trim();
3838
};
3939

4040
renderer.strong = ({ tokens }) => `<b>${renderer.parser.parseInline(tokens)}</b>`;

0 commit comments

Comments
 (0)