X-Git-Url: https://git.plutz.net/?a=blobdiff_plain;f=cgilite%2Fmarkdown.awk;h=b5aa538055fe017b8c2b2827f23631f5d91d23b3;hb=6e51b7fee5e99d8ce3f5a2be9ac8ccb8ca2befea;hp=c42aa5ac318e544c7eb259481eb1842b33ddf895;hpb=cc10cae9b0fb87a17819a487842913c2c23ddd3c;p=shellwiki diff --git a/cgilite/markdown.awk b/cgilite/markdown.awk index c42aa5a..b5aa538 100755 --- a/cgilite/markdown.awk +++ b/cgilite/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]" )) {