X-Git-Url: https://git.plutz.net/?p=cgilite;a=blobdiff_plain;f=markdown.awk;fp=markdown.awk;h=b5aa538055fe017b8c2b2827f23631f5d91d23b3;hp=c42aa5ac318e544c7eb259481eb1842b33ddf895;hb=d4da2a56ff96e4d6d79c246bdb0223f14ef3965e;hpb=fc3451c360c190736b7355c318f937fe304bb3c4 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]" )) {