From 9e6a4cedd470c18001b5017bea4bce8434c1e860 Mon Sep 17 00:00:00 2001 From: hexh <250786313@qq.com> Date: Sat, 3 Feb 2024 15:36:40 +0800 Subject: [PATCH] fix(markdown): incorrect list indentation alignment in markdown parser --- src/markdown/renderer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/markdown/renderer.ts b/src/markdown/renderer.ts index 7061422ca76..b82ed11a63c 100644 --- a/src/markdown/renderer.ts +++ b/src/markdown/renderer.ts @@ -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)) }