Skip to content

Commit

Permalink
fix: render of list (#365)
Browse files Browse the repository at this point in the history
  • Loading branch information
YangFong authored and yanglbme committed Aug 29, 2024
1 parent f263fa5 commit 5ed3c7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/wx-renderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ class WxRenderer extends Renderer {
if (token.type === `list`) {
listItems.push(this.list(token))
}
else {
else if (token.type !== `space`) {
listItems.push(this.listitem([token], prefix))
}
}
Expand Down

0 comments on commit 5ed3c7d

Please sign in to comment.