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 57677b2 commit c1f7847Copy full SHA for c1f7847
2 files changed
.npmrc
@@ -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
@@ -34,7 +34,7 @@ export async function markdownToHtml(s: string): Promise<string> {
34
};
35
36
renderer.listitem = (item) => {
37
- return renderer.parser.parseInline(item.tokens);
+ return renderer.parser.parse(item.tokens).trim();
38
39
40
renderer.strong = ({ tokens }) => `<b>${renderer.parser.parseInline(tokens)}</b>`;
0 commit comments