Skip to content

Commit

Permalink
fix(markdown): incorrect list indentation alignment in markdown parser
Browse files Browse the repository at this point in the history
  • Loading branch information
hexh250786313 committed Feb 3, 2024
1 parent 9c079ad commit 9e6a4ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/markdown/renderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ class Renderer {
}

public list(body, ordered): string {
body = this.o.list(body, ordered, this.tab)
body = this.o.list(body, ordered)
return section(fixNestedLists(indentLines(this.tab, body), this.tab))
}

Expand Down

0 comments on commit 9e6a4ce

Please sign in to comment.