From d4da2a56ff96e4d6d79c246bdb0223f14ef3965e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Paul=20H=C3=A4nsch?= Date: Wed, 30 Aug 2023 17:49:56 +0200 Subject: [PATCH] bugfix: endless loop in _startlist because of lacking indention removal --- markdown.awk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/markdown.awk b/markdown.awk index c42aa5a..b5aa538 100755 --- a/markdown.awk +++ b/markdown.awk @@ -733,7 +733,7 @@ function _startlist(block, type, mark, exclude, LOCAL, st, len, list, indent, te st = RSTART; len = RLENGTH; list = substr( block, RSTART, RLENGTH); sub("^\n", "", list); match(list, "^ ? ? ?"); indent = RLENGTH; - gsub( "(^|\n) {0," indent - 1 "}", "\n", list); sub("^\n", "", list); + gsub( "(^|\n) {0," indent "}", "\n", list); sub("^\n", "", list); text = substr(block, 1, st - 1); block = substr(block, st + len); if (match( list, "\n" exclude "[ \t]" )) { -- 2.39.2